Verification meter
CSSA circular inspection gauge needle sweeps steadily across tolerance zones to register verified sign-off.
- Tier
- CSS
- Dependencies
- None
- Duration
- 4 s, loops
- Categories
- Data and progress
- Use cases
- Determinate progress, Success and confirmation
- Industries
- Construction and built environment, Cross-industry
- Style
- Minimal line · light stroke
- Set
- punchlist
- Tags
- circlebarsloopminimal
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-verify" data-pulsar="punchlist-verify" viewBox="0 0 160 96"><circle cx="80" cy="48" r="28" stroke="currentColor" stroke-width="1.2" class="meter-dial" opacity=".3"></circle><path stroke="var(--pulsar-accent, currentColor)" stroke-width="2" d="M80 20a28 28 0 0 1 28 28" class="zone"></path><line x1="80" x2="100" y1="48" y2="28" stroke="var(--pulsar-accent, currentColor)" stroke-linecap="round" stroke-width="1.6" class="needle"></line><circle cx="80" cy="48" r="3" fill="currentColor" class="center-hub"></circle></svg>
animation.css
.pulsar-punchlist-verify {
display: block;
width: 100%;
height: 100%;
}
.pulsar-punchlist-verify .needle {
animation: punchlist-verify-sweep 4s ease-in-out infinite;
transform-origin: 80px 48px;
}
.pulsar-punchlist-verify .zone {
animation: punchlist-verify-zone 4s ease-in-out infinite;
}
@keyframes punchlist-verify-sweep {
0%,
100% {
transform: rotate(-45deg);
}
50% {
transform: rotate(45deg);
}
}
@keyframes punchlist-verify-zone {
0%,
100% {
opacity: 0.3;
}
50% {
opacity: 1;
}
}
@media (prefers-reduced-motion: reduce) {
.pulsar-punchlist-verify .needle,
.pulsar-punchlist-verify .zone {
animation: none;
transform: none;
opacity: 1;
}
}