Risk Factors
CSSA triangular risk network circulates energy packets along connecting geometric edges.
- 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
- geometricdotspulseloop
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-factor" data-pulsar="underwrite-factor" viewBox="0 0 160 96"><polygon fill="currentColor" fill-opacity=".04" stroke="currentColor" stroke-width="1.5" points="80,22 114,72 46,72" opacity=".3"></polygon><circle cx="80" cy="22" r="5" fill="var(--pulsar-accent, currentColor)" stroke="currentColor" stroke-width="1.5" class="fn n1"></circle><circle cx="114" cy="72" r="5" fill="var(--pulsar-accent, currentColor)" stroke="currentColor" stroke-width="1.5" class="fn n2"></circle><circle cx="46" cy="72" r="5" fill="var(--pulsar-accent, currentColor)" stroke="currentColor" stroke-width="1.5" class="fn n3"></circle><circle cx="80" cy="22" r="2.5" fill="var(--pulsar-accent, currentColor)" class="packet"></circle></svg>
animation.css
.pulsar-underwrite-factor {
display: block;
width: 100%;
height: 100%;
}
.pulsar-underwrite-factor .packet {
animation: underwrite-factor-traverse 4s linear infinite;
}
.pulsar-underwrite-factor .fn {
animation: underwrite-factor-glow 4s ease-in-out infinite;
}
.pulsar-underwrite-factor .n1 {
animation-delay: 0s;
}
.pulsar-underwrite-factor .n2 {
animation-delay: 1.33s;
}
.pulsar-underwrite-factor .n3 {
animation-delay: 2.66s;
}
@keyframes underwrite-factor-traverse {
0% {
transform: translate(0, 0);
}
33.3% {
transform: translate(34px, 50px);
}
66.6% {
transform: translate(-34px, 50px);
}
100% {
transform: translate(0, 0);
}
}
@keyframes underwrite-factor-glow {
0%,
100% {
opacity: 0.4;
}
50% {
opacity: 1;
}
}
@media (prefers-reduced-motion: reduce) {
.pulsar-underwrite-factor .packet,
.pulsar-underwrite-factor .fn {
animation: none;
transform: none;
opacity: 1;
}
}