Risk Profile
CSSA circular radar sweep rotates continuously over a drafting grid while risk markers scan.
- 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
- gridrotateringloop
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-risk" data-pulsar="underwrite-risk" viewBox="0 0 160 96"><circle cx="80" cy="48" r="34" stroke="currentColor" class="grid-outer" opacity=".25"></circle><circle cx="80" cy="48" r="22" stroke="currentColor" stroke-dasharray="2 3" class="grid-mid" opacity=".25"></circle><circle cx="80" cy="48" r="10" stroke="currentColor" class="grid-inner" opacity=".25"></circle><line x1="42" x2="118" y1="48" y2="48" stroke="currentColor" opacity=".2"></line><line x1="80" x2="80" y1="10" y2="86" stroke="currentColor" opacity=".2"></line><g class="radar-beam"><line x1="80" x2="114" y1="48" y2="48" stroke="var(--pulsar-accent, currentColor)" stroke-linecap="round" stroke-width="2"></line><path fill="var(--pulsar-accent, currentColor)" fill-opacity=".15" d="m80 48 30-16a34 34 0 0 1 4 16Z"></path></g><circle cx="96" cy="38" r="2.5" fill="var(--pulsar-accent, currentColor)" class="target-blip t1"></circle><circle cx="68" cy="58" r="2" fill="var(--pulsar-accent, currentColor)" class="target-blip t2"></circle><circle cx="72" cy="32" r="2.5" fill="var(--pulsar-accent, currentColor)" class="target-blip t3"></circle></svg>
animation.css
.pulsar-underwrite-risk {
display: block;
width: 100%;
height: 100%;
}
.pulsar-underwrite-risk .radar-beam {
transform-origin: 80px 48px;
animation: underwrite-risk-sweep 4s linear infinite;
}
.pulsar-underwrite-risk .target-blip.t1 {
animation: underwrite-risk-blip 4s ease-in-out infinite;
animation-delay: -3.7s;
}
.pulsar-underwrite-risk .target-blip.t2 {
animation: underwrite-risk-blip 4s ease-in-out infinite;
animation-delay: -2.5s;
}
.pulsar-underwrite-risk .target-blip.t3 {
animation: underwrite-risk-blip 4s ease-in-out infinite;
animation-delay: -1.3s;
}
@keyframes underwrite-risk-sweep {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
@keyframes underwrite-risk-blip {
0%,
15% {
opacity: 0.1;
transform: scale(0.8);
}
30% {
opacity: 1;
transform: scale(1.3);
}
60%,
100% {
opacity: 0.2;
transform: scale(1);
}
}
@media (prefers-reduced-motion: reduce) {
.pulsar-underwrite-risk .radar-beam,
.pulsar-underwrite-risk .target-blip,
.pulsar-underwrite-risk .target-blip.t1,
.pulsar-underwrite-risk .target-blip.t2,
.pulsar-underwrite-risk .target-blip.t3 {
animation: none;
transform: none;
opacity: 1;
}
}