Task confirmation
CSSA square checkbox outline draws in, followed by a crisp verification checkmark completing the inspection task.
- 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
- minimalstrokeloopprogress
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-check" data-pulsar="punchlist-check" viewBox="0 0 160 96"><rect width="52" height="52" x="54" y="22" stroke="currentColor" stroke-width="1.4" class="box" opacity=".3" rx="3"></rect><path stroke="var(--pulsar-accent, currentColor)" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m66 48 10 10 18-20" class="mark"></path></svg>
animation.css
.pulsar-punchlist-check {
display: block;
width: 100%;
height: 100%;
}
.pulsar-punchlist-check .box {
animation: punchlist-check-box 4s ease-in-out infinite;
}
.pulsar-punchlist-check .mark {
stroke-dasharray: 45;
animation: punchlist-check-draw 4s ease-in-out infinite;
}
@keyframes punchlist-check-box {
0%,
100% {
opacity: 0.25;
transform: scale(0.96);
transform-origin: 80px 48px;
}
50% {
opacity: 0.9;
transform: scale(1.02);
transform-origin: 80px 48px;
}
}
@keyframes punchlist-check-draw {
0%,
20% {
stroke-dashoffset: 45;
opacity: 0;
}
50%,
80% {
stroke-dashoffset: 0;
opacity: 1;
}
100% {
stroke-dashoffset: 0;
opacity: 0.2;
}
}
@media (prefers-reduced-motion: reduce) {
.pulsar-punchlist-check .box,
.pulsar-punchlist-check .mark {
animation: none;
transform: none;
stroke-dashoffset: 0;
opacity: 1;
}
}