Rupture
CSSA continuous horizontal dotted line has one segment that breaks apart and floats downward, leaving a physical gap.
- Tier
- CSS
- Dependencies
- None
- Duration
- 4.2 s, loops
- Categories
- Icons and micro-interactions
- Use cases
- Errors and warnings, Security and trust
- Industries
- Security and identity, Cross-industry
- Style
- Minimal line · light stroke
- Set
- anomaly
- Tags
- linegeometricstrokeminimalui
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-rupture" data-pulsar="anomaly-rupture" viewBox="0 0 160 96"><line x1="24" x2="64" y1="48" y2="48" stroke="currentColor" stroke-linecap="round" stroke-width="2" opacity=".6"></line><circle cx="64" cy="48" r="2.5" fill="currentColor"></circle><line x1="96" x2="136" y1="48" y2="48" stroke="currentColor" stroke-linecap="round" stroke-width="2" opacity=".6"></line><circle cx="96" cy="48" r="2.5" fill="currentColor"></circle><g class="anomaly-rupture-chunk"><line x1="66" x2="94" y1="48" y2="48" stroke="var(--pulsar-accent, currentColor)" stroke-linecap="round" stroke-width="2.5"></line><circle cx="80" cy="48" r="2" fill="var(--pulsar-accent, currentColor)"></circle></g><g class="anomaly-rupture-sparks"><circle cx="65" cy="48" r="4" stroke="var(--pulsar-accent, currentColor)" stroke-width="1.5"></circle><circle cx="95" cy="48" r="4" stroke="var(--pulsar-accent, currentColor)" stroke-width="1.5"></circle></g></svg>
animation.css
.pulsar-anomaly-rupture {
display: block;
overflow: visible;
}
.pulsar-anomaly-rupture .anomaly-rupture-chunk {
transform-origin: 80px 48px;
animation: anomaly-rupture-chunk-anim 4200ms cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
.pulsar-anomaly-rupture .anomaly-rupture-sparks {
animation: anomaly-rupture-sparks-anim 4200ms ease infinite;
}
@keyframes anomaly-rupture-chunk-anim {
0%,
20% {
transform: translateY(0) rotate(0deg);
opacity: 1;
}
38% {
transform: translateY(18px) rotate(8deg);
opacity: 0.85;
}
75% {
transform: translateY(18px) rotate(8deg);
opacity: 0.85;
}
90%,
100% {
transform: translateY(0) rotate(0deg);
opacity: 1;
}
}
@keyframes anomaly-rupture-sparks-anim {
0%,
20% {
opacity: 0;
transform: scale(0.5);
transform-origin: 80px 48px;
}
26% {
opacity: 1;
transform: scale(1.4);
transform-origin: 80px 48px;
}
40% {
opacity: 0;
transform: scale(1.8);
transform-origin: 80px 48px;
}
100% {
opacity: 0;
}
}
@media (prefers-reduced-motion: reduce) {
.pulsar-anomaly-rupture * {
animation: none !important;
}
}