Eligibility Screen
CSSA precision technical funnel filters incoming signal points into a calibrated beam.
- 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
- geometricdotsprogressloop
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-eligibility" data-pulsar="underwrite-eligibility" viewBox="0 0 160 96"><path stroke="currentColor" stroke-width="1.5" d="m44 24 30 30v20" class="funnel-left"></path><path stroke="currentColor" stroke-width="1.5" d="M116 24 86 54v20" class="funnel-right"></path><line x1="44" x2="116" y1="24" y2="24" stroke="currentColor" stroke-dasharray="2 3" class="lip" opacity=".4"></line><g class="drop-flow"><circle cx="64" cy="20" r="2.5" fill="var(--pulsar-accent, currentColor)" class="p-dot p1"></circle><circle cx="80" cy="16" r="2.5" fill="var(--pulsar-accent, currentColor)" class="p-dot p2"></circle><circle cx="96" cy="20" r="2.5" fill="var(--pulsar-accent, currentColor)" class="p-dot p3"></circle></g><line x1="80" x2="80" y1="56" y2="78" stroke="var(--pulsar-accent, currentColor)" stroke-linecap="round" stroke-width="2.5" class="filtered-beam"></line></svg>
animation.css
.pulsar-underwrite-eligibility {
display: block;
width: 100%;
height: 100%;
}
.pulsar-underwrite-eligibility .p-dot {
animation: underwrite-eligibility-fall 4s linear infinite;
}
.pulsar-underwrite-eligibility .p1 {
animation-delay: 0s;
}
.pulsar-underwrite-eligibility .p2 {
animation-delay: 0.5s;
}
.pulsar-underwrite-eligibility .p3 {
animation-delay: 1s;
}
.pulsar-underwrite-eligibility .filtered-beam {
animation: underwrite-eligibility-pulse 4s ease-in-out infinite;
}
@keyframes underwrite-eligibility-fall {
0% {
transform: translateY(0);
opacity: 0;
}
20% {
opacity: 1;
}
60% {
transform: translateY(36px);
opacity: 1;
}
80%,
100% {
transform: translateY(48px);
opacity: 0;
}
}
@keyframes underwrite-eligibility-pulse {
0%,
100% {
opacity: 0.3;
}
50% {
opacity: 1;
}
}
@media (prefers-reduced-motion: reduce) {
.pulsar-underwrite-eligibility .p-dot,
.pulsar-underwrite-eligibility .filtered-beam {
animation: none;
transform: none;
opacity: 1;
}
}