Guideline Check
CSSA horizontal status cursor sweeps across guideline checkpoints that intersect it.
- Tier
- CSS
- Dependencies
- None
- Duration
- 4 s, loops
- Categories
- Loaders and spinners
- Use cases
- Loading and waiting, Workflow and approvals
- Industries
- Insurance, Cross-industry
- Style
- Technical · light stroke
- Set
- underwrite
- Tags
- progresslineloop
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-underwrite-guidelines" data-pulsar="underwrite-guidelines" viewBox="0 0 160 96"><line x1="28" x2="132" y1="52" y2="52" stroke="currentColor" stroke-width="1.5" class="baseline" opacity=".3"></line><g class="pins"><line x1="48" x2="48" y1="36" y2="68" stroke="currentColor" stroke-width="1.5" class="p-line pl1"></line><circle cx="48" cy="36" r="3" fill="var(--pulsar-accent, currentColor)" class="p-head ph1"></circle><line x1="72" x2="72" y1="36" y2="68" stroke="currentColor" stroke-width="1.5" class="p-line pl2"></line><circle cx="72" cy="36" r="3" fill="var(--pulsar-accent, currentColor)" class="p-head ph2"></circle><line x1="96" x2="96" y1="36" y2="68" stroke="currentColor" stroke-width="1.5" class="p-line pl3"></line><circle cx="96" cy="36" r="3" fill="var(--pulsar-accent, currentColor)" class="p-head ph3"></circle><line x1="120" x2="120" y1="36" y2="68" stroke="currentColor" stroke-width="1.5" class="p-line pl4"></line><circle cx="120" cy="36" r="3" fill="var(--pulsar-accent, currentColor)" class="p-head ph4"></circle></g><line x1="28" x2="68" y1="52" y2="52" stroke="var(--pulsar-accent, currentColor)" stroke-linecap="round" stroke-width="3" class="scan-bar"></line></svg>
animation.css
.pulsar-underwrite-guidelines {
display: block;
width: 100%;
height: 100%;
}
.pulsar-underwrite-guidelines .scan-bar {
animation: underwrite-guidelines-advance 4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
.pulsar-underwrite-guidelines .ph1 {
animation: underwrite-guidelines-pin 4s ease-in-out infinite -3.8s;
}
.pulsar-underwrite-guidelines .ph2 {
animation: underwrite-guidelines-pin 4s ease-in-out infinite -3.5s;
}
.pulsar-underwrite-guidelines .ph3 {
animation: underwrite-guidelines-pin 4s ease-in-out infinite -3.2s;
}
.pulsar-underwrite-guidelines .ph4 {
animation: underwrite-guidelines-pin 4s ease-in-out infinite -2.9s;
}
@keyframes underwrite-guidelines-advance {
0%,
15% {
transform: translateX(0);
opacity: 0.5;
}
50%,
75% {
transform: translateX(64px);
opacity: 1;
}
90%,
100% {
transform: translateX(0);
opacity: 0.5;
}
}
@keyframes underwrite-guidelines-pin {
0%,
20% {
transform: scale(1);
opacity: 0.3;
}
35% {
transform: scale(1.4);
opacity: 1;
}
50%,
100% {
transform: scale(1);
opacity: 0.3;
}
}
@media (prefers-reduced-motion: reduce) {
.pulsar-underwrite-guidelines .scan-bar,
.pulsar-underwrite-guidelines .ph1,
.pulsar-underwrite-guidelines .ph2,
.pulsar-underwrite-guidelines .ph3,
.pulsar-underwrite-guidelines .ph4 {
animation: none;
transform: none;
opacity: 1;
}
}