Audit inspector
CSSAn inspection optics reticle sweeps across checklist data items to spotlight pending audit validation.
- 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
- circlelineminimalloop
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-audit" data-pulsar="punchlist-audit" viewBox="0 0 160 96"><g stroke="currentColor" stroke-width="1.2" class="checklist" opacity=".3"><line x1="36" x2="124" y1="36" y2="36"></line><line x1="36" x2="124" y1="48" y2="48"></line><line x1="36" x2="124" y1="60" y2="60"></line></g><circle cx="54" cy="48" r="14" stroke="var(--pulsar-accent, currentColor)" stroke-width="1.6" class="lens"></circle><line x1="64" x2="74" y1="58" y2="68" stroke="var(--pulsar-accent, currentColor)" stroke-linecap="round" stroke-width="1.8" class="lens-handle"></line></svg>
animation.css
.pulsar-punchlist-audit {
display: block;
width: 100%;
height: 100%;
}
.pulsar-punchlist-audit .lens {
animation: punchlist-audit-sweep 4s ease-in-out infinite;
}
.pulsar-punchlist-audit .lens-handle {
animation: punchlist-audit-sweep 4s ease-in-out infinite;
}
@keyframes punchlist-audit-sweep {
0%,
100% {
transform: translateX(0);
}
50% {
transform: translateX(48px);
}
}
@media (prefers-reduced-motion: reduce) {
.pulsar-punchlist-audit .lens,
.pulsar-punchlist-audit .lens-handle {
animation: none;
transform: none;
}
}