Diverge
CSSA single vertical line splits into three branches, with one branch diverging at a sharp, irregular angle and changing color.
- Tier
- CSS
- Dependencies
- None
- Duration
- 4.2 s, loops
- Categories
- Icons and micro-interactions
- Use cases
- Errors and warnings, Dashboards and reporting
- Industries
- Security and identity, Cross-industry
- Style
- Minimal line · light stroke
- Set
- anomaly
- Tags
- linearrowgeometricstrokeminimal
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-anomaly-diverge" data-pulsar="anomaly-diverge" viewBox="0 0 160 96"><line x1="24" x2="60" y1="48" y2="48" stroke="currentColor" stroke-linecap="round" stroke-width="2.5" opacity=".7"></line><circle cx="60" cy="48" r="3" fill="currentColor"></circle><path stroke="currentColor" stroke-linecap="round" stroke-width="2" d="M60 48c15 0 25-18 45-18h31" opacity=".4"></path><path stroke="currentColor" stroke-linecap="round" stroke-width="2" d="M60 48c15 0 25 18 45 18h31" opacity=".4"></path><g class="anomaly-diverge-rogue"><path stroke="var(--pulsar-accent, currentColor)" stroke-linecap="round" stroke-linejoin="round" stroke-width="2.5" d="M60 48h38l32-30"></path><circle cx="130" cy="18" r="3" fill="var(--pulsar-accent, currentColor)"></circle><circle cx="130" cy="18" r="7" stroke="var(--pulsar-accent, currentColor)" stroke-width="1.5" class="anomaly-diverge-halo"></circle></g></svg>
animation.css
.pulsar-anomaly-diverge {
display: block;
overflow: visible;
}
.pulsar-anomaly-diverge .anomaly-diverge-rogue {
stroke-dasharray: 100;
stroke-dashoffset: 100;
animation: anomaly-diverge-rogue-anim 4200ms cubic-bezier(0.2, 1, 0.3, 1) infinite;
}
.pulsar-anomaly-diverge .anomaly-diverge-halo {
transform-origin: 130px 18px;
animation: anomaly-diverge-halo-anim 4200ms ease infinite;
}
@keyframes anomaly-diverge-rogue-anim {
0%,
15% {
stroke-dashoffset: 100;
opacity: 0;
}
25% {
opacity: 1;
}
50%,
80% {
stroke-dashoffset: 0;
opacity: 1;
}
92%,
100% {
stroke-dashoffset: -100;
opacity: 0;
}
}
@keyframes anomaly-diverge-halo-anim {
0%,
48% {
transform: scale(0.4);
opacity: 0;
}
56% {
opacity: 0.9;
}
75% {
transform: scale(1.6);
opacity: 0;
}
100% {
transform: scale(1.6);
opacity: 0;
}
}
@media (prefers-reduced-motion: reduce) {
.pulsar-anomaly-diverge * {
animation: none !important;
}
}