Target locking
CSSA precision target reticle locks onto a defect coordinate point across structural inspection quadrants.
- Tier
- CSS
- Dependencies
- None
- Duration
- 4 s, loops
- Categories
- Data and progress
- Use cases
- Search and filtering, Workflow and approvals
- Industries
- Construction and built environment, Cross-industry
- Style
- Minimal line · light stroke
- Set
- punchlist
- Tags
- circleminimallooppulse
Companion assets
The same artwork, not animated. Derived from the entry’s own resting state, so it matches exactly.
Code
animation.svg
<svg xmlns="http://www.w3.org/2000/svg" fill="none" aria-hidden="true" class="pulsar pulsar-punchlist-target" data-pulsar="punchlist-target" viewBox="0 0 160 96"><circle cx="80" cy="48" r="22" stroke="currentColor" stroke-width="1.2" class="ring" opacity=".3"></circle><line x1="50" x2="110" y1="48" y2="48" stroke="currentColor" stroke-dasharray="2 3" class="ch-h" opacity=".3"></line><line x1="80" x2="80" y1="18" y2="78" stroke="currentColor" stroke-dasharray="2 3" class="ch-v" opacity=".3"></line><circle cx="80" cy="48" r="12" stroke="var(--pulsar-accent, currentColor)" stroke-width="1.5" class="reticle"></circle><circle cx="80" cy="48" r="3" fill="var(--pulsar-accent, currentColor)" class="defect-pt"></circle></svg>
animation.css
.pulsar-punchlist-target {
display: block;
width: 100%;
height: 100%;
}
.pulsar-punchlist-target .reticle {
animation: punchlist-target-lock 4s ease-in-out infinite;
}
.pulsar-punchlist-target .defect-pt {
animation: punchlist-target-pt 4s ease-in-out infinite;
}
@keyframes punchlist-target-lock {
0%,
100% {
transform: scale(1.3);
transform-origin: 80px 48px;
opacity: 0.4;
}
50% {
transform: scale(0.9);
transform-origin: 80px 48px;
opacity: 1;
}
}
@keyframes punchlist-target-pt {
0%,
100% {
opacity: 0.3;
}
50% {
opacity: 1;
}
}
@media (prefers-reduced-motion: reduce) {
.pulsar-punchlist-target .reticle,
.pulsar-punchlist-target .defect-pt {
animation: none;
transform: none;
opacity: 1;
}
}