Coverage Limits
CSSDual boundary callipers oscillate against an actuarial scale to calibrate risk thresholds.
- 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
- linegeometricloop
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-limits" data-pulsar="underwrite-limits" viewBox="0 0 160 96"><line x1="28" x2="132" y1="48" y2="48" stroke="currentColor" stroke-width="1.5" class="ruler"></line><path stroke="currentColor" d="M36 44v8m12-7v6m12-7v8m12-7v6m8-9v12m8-9v6m12-7v8m12-7v6m12-7v8" class="ticks" opacity=".4"></path><g class="boundary-band"><rect width="48" height="32" x="56" y="32" fill="var(--pulsar-accent, currentColor)" fill-opacity=".1" stroke="var(--pulsar-accent, currentColor)" stroke-dasharray="2 2" class="zone" rx="2"></rect></g><g class="marker m-left"><line x1="56" x2="56" y1="26" y2="70" stroke="var(--pulsar-accent, currentColor)" stroke-width="2"></line><polygon fill="var(--pulsar-accent, currentColor)" points="56,24 52,20 60,20"></polygon><polygon fill="var(--pulsar-accent, currentColor)" points="56,72 52,76 60,76"></polygon></g><g class="marker m-right"><line x1="104" x2="104" y1="26" y2="70" stroke="var(--pulsar-accent, currentColor)" stroke-width="2"></line><polygon fill="var(--pulsar-accent, currentColor)" points="104,24 100,20 108,20"></polygon><polygon fill="var(--pulsar-accent, currentColor)" points="104,72 100,76 108,76"></polygon></g></svg>
animation.css
.pulsar-underwrite-limits {
display: block;
width: 100%;
height: 100%;
}
.pulsar-underwrite-limits .m-left {
animation: underwrite-limits-left 4s ease-in-out infinite;
}
.pulsar-underwrite-limits .m-right {
animation: underwrite-limits-right 4s ease-in-out infinite;
}
.pulsar-underwrite-limits .zone {
animation: underwrite-limits-band 4s ease-in-out infinite;
}
@keyframes underwrite-limits-left {
0%,
100% {
transform: translateX(0);
}
50% {
transform: translateX(-12px);
}
}
@keyframes underwrite-limits-right {
0%,
100% {
transform: translateX(0);
}
50% {
transform: translateX(12px);
}
}
@keyframes underwrite-limits-band {
0%,
100% {
x: 56px;
width: 48px;
}
50% {
x: 44px;
width: 72px;
}
}
@media (prefers-reduced-motion: reduce) {
.pulsar-underwrite-limits .m-left,
.pulsar-underwrite-limits .m-right,
.pulsar-underwrite-limits .zone {
animation: none;
transform: none;
x: 56px;
width: 48px;
}
}