Premium Calculator
CSSConcentric numeric indicator rings rotate on a shared axis, aligning drafting notches.
- 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
- circleringrotateloop
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-premium" data-pulsar="underwrite-premium" viewBox="0 0 160 96"><circle cx="80" cy="48" r="36" stroke="currentColor" opacity=".2"></circle><circle cx="80" cy="48" r="32" stroke="currentColor" stroke-dasharray="6 4" stroke-width="1.5" class="ring-outer"></circle><circle cx="80" cy="48" r="22" stroke="var(--pulsar-accent, currentColor)" stroke-dasharray="4 4" stroke-width="1.5" class="ring-mid"></circle><circle cx="80" cy="48" r="12" stroke="currentColor" stroke-dasharray="2 3" stroke-width="1.5" class="ring-inner"></circle><line x1="40" x2="120" y1="48" y2="48" stroke="currentColor" stroke-dasharray="1 3" class="sight-h" opacity=".4"></line><line x1="80" x2="80" y1="12" y2="84" stroke="currentColor" stroke-dasharray="1 3" class="sight-v" opacity=".4"></line><circle cx="80" cy="48" r="3" fill="var(--pulsar-accent, currentColor)" class="core-dot"></circle><polygon fill="var(--pulsar-accent, currentColor)" points="80,14 77,18 83,18" class="pointer"></polygon></svg>
animation.css
.pulsar-underwrite-premium {
display: block;
width: 100%;
height: 100%;
}
.pulsar-underwrite-premium .ring-outer {
transform-origin: 80px 48px;
animation: underwrite-premium-spin-cw 4s linear infinite;
}
.pulsar-underwrite-premium .ring-mid {
transform-origin: 80px 48px;
animation: underwrite-premium-spin-ccw 4s linear infinite;
}
.pulsar-underwrite-premium .ring-inner {
transform-origin: 80px 48px;
animation: underwrite-premium-spin-cw 4s linear infinite;
}
.pulsar-underwrite-premium .core-dot {
animation: underwrite-premium-pulse 4s ease-in-out infinite;
}
@keyframes underwrite-premium-spin-cw {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
@keyframes underwrite-premium-spin-ccw {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(-360deg);
}
}
@keyframes underwrite-premium-pulse {
0%,
100% {
transform: scale(0.8);
opacity: 0.5;
}
50% {
transform: scale(1.3);
opacity: 1;
}
}
@media (prefers-reduced-motion: reduce) {
.pulsar-underwrite-premium .ring-outer,
.pulsar-underwrite-premium .ring-mid,
.pulsar-underwrite-premium .ring-inner,
.pulsar-underwrite-premium .core-dot {
animation: none;
transform: none;
opacity: 1;
}
}