Defect highlight
CSSA defect node pulses with an expanded warning boundary callout highlighting a construction punch item.
- Tier
- CSS
- Dependencies
- None
- Duration
- 4 s, loops
- Categories
- Data and progress
- Use cases
- Errors and warnings, Dashboards and reporting
- Industries
- Construction and built environment, Cross-industry
- Style
- Minimal line · light stroke
- Set
- punchlist
- Tags
- circlepulseloopminimal
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-defect" data-pulsar="punchlist-defect" viewBox="0 0 160 96"><circle cx="80" cy="48" r="24" stroke="var(--pulsar-accent, currentColor)" stroke-dasharray="3 3" class="halo"></circle><circle cx="80" cy="48" r="14" stroke="var(--pulsar-accent, currentColor)" stroke-width="1.5" class="core"></circle><line x1="80" x2="80" y1="41" y2="49" stroke="currentColor" stroke-linecap="round" stroke-width="1.6" class="mark-v"></line><circle cx="80" cy="55" r="1.2" fill="currentColor" class="mark-dot"></circle></svg>
animation.css
.pulsar-punchlist-defect {
display: block;
width: 100%;
height: 100%;
}
.pulsar-punchlist-defect .halo {
animation: punchlist-defect-halo 4s ease-in-out infinite;
}
.pulsar-punchlist-defect .core {
animation: punchlist-defect-core 4s ease-in-out infinite;
}
@keyframes punchlist-defect-halo {
0%,
100% {
transform: scale(0.85);
transform-origin: 80px 48px;
opacity: 0.2;
}
50% {
transform: scale(1.15);
transform-origin: 80px 48px;
opacity: 0.8;
}
}
@keyframes punchlist-defect-core {
0%,
100% {
transform: scale(0.92);
transform-origin: 80px 48px;
opacity: 0.6;
}
50% {
transform: scale(1.08);
transform-origin: 80px 48px;
opacity: 1;
}
}
@media (prefers-reduced-motion: reduce) {
.pulsar-punchlist-defect .halo,
.pulsar-punchlist-defect .core {
animation: none;
transform: none;
opacity: 1;
}
}