Actuarial Search
CSSAn actuarial compass needle scans circular historical distribution bars.
- 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
- chartcirclerotateloop
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-history" data-pulsar="underwrite-history" viewBox="0 0 160 96"><circle cx="80" cy="48" r="32" stroke="currentColor" stroke-dasharray="2 4" opacity=".3"></circle><g class="bars"><line x1="80" x2="80" y1="16" y2="24" stroke="var(--pulsar-accent, currentColor)" stroke-width="2" class="b b1"></line><line x1="102" x2="96" y1="26" y2="32" stroke="currentColor" stroke-width="2" class="b b2"></line><line x1="112" x2="104" y1="48" y2="48" stroke="var(--pulsar-accent, currentColor)" stroke-width="2" class="b b3"></line><line x1="102" x2="96" y1="70" y2="64" stroke="currentColor" stroke-width="2" class="b b4"></line><line x1="80" x2="80" y1="80" y2="72" stroke="var(--pulsar-accent, currentColor)" stroke-width="2" class="b b5"></line><line x1="58" x2="64" y1="70" y2="64" stroke="currentColor" stroke-width="2" class="b b6"></line><line x1="48" x2="56" y1="48" y2="48" stroke="var(--pulsar-accent, currentColor)" stroke-width="2" class="b b7"></line><line x1="58" x2="64" y1="26" y2="32" stroke="currentColor" stroke-width="2" class="b b8"></line></g><g class="search-needle"><line x1="80" x2="80" y1="48" y2="22" stroke="var(--pulsar-accent, currentColor)" stroke-linecap="round" stroke-width="2"></line><circle cx="80" cy="48" r="4" fill="currentColor"></circle><circle cx="80" cy="48" r="1.5" fill="var(--pulsar-accent, currentColor)"></circle></g></svg>
animation.css
.pulsar-underwrite-history {
display: block;
width: 100%;
height: 100%;
}
.pulsar-underwrite-history .search-needle {
transform-origin: 80px 48px;
animation: underwrite-history-spin 4s linear infinite;
}
.pulsar-underwrite-history .b {
animation: underwrite-history-pulse 4s ease-in-out infinite;
}
.pulsar-underwrite-history .b1 {
animation-delay: 0s;
}
.pulsar-underwrite-history .b2 {
animation-delay: 0.5s;
}
.pulsar-underwrite-history .b3 {
animation-delay: 1s;
}
.pulsar-underwrite-history .b4 {
animation-delay: 1.5s;
}
.pulsar-underwrite-history .b5 {
animation-delay: 2s;
}
.pulsar-underwrite-history .b6 {
animation-delay: 2.5s;
}
.pulsar-underwrite-history .b7 {
animation-delay: 3s;
}
.pulsar-underwrite-history .b8 {
animation-delay: 3.5s;
}
@keyframes underwrite-history-spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
@keyframes underwrite-history-pulse {
0%,
100% {
opacity: 0.3;
}
50% {
opacity: 1;
}
}
@media (prefers-reduced-motion: reduce) {
.pulsar-underwrite-history .search-needle,
.pulsar-underwrite-history .b {
animation: none;
transform: none;
opacity: 1;
}
}