Overflow
CSSA cylinder icon representing a buffer database fills with water-like waves that rise past the rim and spill over.
- Tier
- CSS
- Dependencies
- None
- Duration
- 4.5 s, loops
- Categories
- Icons and micro-interactions
- Use cases
- Errors and warnings, Security and trust
- Industries
- SaaS and software, Security and identity
- Style
- Minimal line · light stroke
- Set
- anomaly
- Tags
- barsgeometricpulsestrokeminimal
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-overflow" data-pulsar="anomaly-overflow" viewBox="0 0 160 96"><ellipse cx="80" cy="32" stroke="currentColor" stroke-width="1.8" opacity=".5" rx="26" ry="8"></ellipse><line x1="54" x2="54" y1="32" y2="68" stroke="currentColor" stroke-width="1.8" opacity=".5"></line><line x1="106" x2="106" y1="32" y2="68" stroke="currentColor" stroke-width="1.8" opacity=".5"></line><path stroke="currentColor" stroke-width="1.8" d="M54 68c0 6 52 6 52 0" opacity=".5"></path><line x1="60" x2="100" y1="62" y2="62" stroke="currentColor" stroke-linecap="round" stroke-width="1.5" opacity=".4"></line><line x1="60" x2="100" y1="52" y2="52" stroke="currentColor" stroke-linecap="round" stroke-width="1.5" opacity=".4"></line><line x1="60" x2="100" y1="42" y2="42" stroke="currentColor" stroke-linecap="round" stroke-width="1.5" opacity=".4"></line><g class="anomaly-overflow-breach"><ellipse cx="80" cy="32" stroke="var(--pulsar-accent, currentColor)" stroke-width="2.5" rx="26" ry="8"></ellipse><line x1="60" x2="100" y1="24" y2="24" stroke="var(--pulsar-accent, currentColor)" stroke-linecap="round" stroke-width="2"></line><circle cx="80" cy="24" r="2.5" fill="var(--pulsar-accent, currentColor)"></circle></g><circle cx="80" cy="24" r="8" stroke="var(--pulsar-accent, currentColor)" stroke-width="1.5" class="anomaly-overflow-alert"></circle></svg>
animation.css
.pulsar-anomaly-overflow {
display: block;
overflow: visible;
}
.pulsar-anomaly-overflow .anomaly-overflow-breach {
animation: anomaly-overflow-breach-anim 4500ms cubic-bezier(0.2, 1, 0.3, 1) infinite;
}
.pulsar-anomaly-overflow .anomaly-overflow-alert {
transform-origin: 80px 24px;
animation: anomaly-overflow-alert-anim 4500ms ease infinite;
}
@keyframes anomaly-overflow-breach-anim {
0%,
20% {
transform: translateY(16px);
opacity: 0;
}
42%,
78% {
transform: translateY(0);
opacity: 1;
}
90%,
100% {
transform: translateY(16px);
opacity: 0;
}
}
@keyframes anomaly-overflow-alert-anim {
0%,
40% {
transform: scale(0.4);
opacity: 0;
}
48% {
opacity: 0.9;
}
70% {
transform: scale(1.6);
opacity: 0;
}
100% {
transform: scale(1.6);
opacity: 0;
}
}
@media (prefers-reduced-motion: reduce) {
.pulsar-anomaly-overflow * {
animation: none !important;
}
}