Corrupt
CSSA square block of small horizontal lines is scrambled as the rows shift randomly left and right in a glitch-like motion.
- Tier
- CSS
- Dependencies
- None
- Duration
- 4 s, loops
- Categories
- Icons and micro-interactions
- Use cases
- Errors and warnings, Security and trust
- Industries
- Security and identity, IT services and infrastructure
- Style
- Minimal line · light stroke
- Set
- anomaly
- Tags
- barsgeometricminimalwipeline
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-corrupt" data-pulsar="anomaly-corrupt" viewBox="0 0 160 96"><rect width="76" height="56" x="42" y="20" stroke="currentColor" stroke-width="1.5" opacity=".3" rx="6"></rect><line x1="52" x2="108" y1="30" y2="30" stroke="currentColor" stroke-linecap="round" stroke-width="2" class="anomaly-corrupt-row-1" opacity=".6"></line><line x1="52" x2="108" y1="39" y2="39" stroke="var(--pulsar-accent, currentColor)" stroke-linecap="round" stroke-width="2" class="anomaly-corrupt-row-2"></line><line x1="52" x2="108" y1="48" y2="48" stroke="currentColor" stroke-linecap="round" stroke-width="2" class="anomaly-corrupt-row-3" opacity=".6"></line><line x1="52" x2="108" y1="57" y2="57" stroke="var(--pulsar-accent, currentColor)" stroke-linecap="round" stroke-width="2" class="anomaly-corrupt-row-4"></line><line x1="52" x2="108" y1="66" y2="66" stroke="currentColor" stroke-linecap="round" stroke-width="2" class="anomaly-corrupt-row-5" opacity=".6"></line></svg>
animation.css
.pulsar-anomaly-corrupt {
display: block;
overflow: visible;
}
.pulsar-anomaly-corrupt .anomaly-corrupt-row-2 {
animation: anomaly-corrupt-row2-anim 4000ms steps(1, end) infinite;
}
.pulsar-anomaly-corrupt .anomaly-corrupt-row-4 {
animation: anomaly-corrupt-row4-anim 4000ms steps(1, end) infinite;
}
@keyframes anomaly-corrupt-row2-anim {
0%,
25% {
transform: translateX(0);
}
28% {
transform: translateX(12px);
}
35% {
transform: translateX(-8px);
}
42% {
transform: translateX(10px);
}
50% {
transform: translateX(0);
}
100% {
transform: translateX(0);
}
}
@keyframes anomaly-corrupt-row4-anim {
0%,
25% {
transform: translateX(0);
}
30% {
transform: translateX(-14px);
}
38% {
transform: translateX(8px);
}
45% {
transform: translateX(-6px);
}
52% {
transform: translateX(0);
}
100% {
transform: translateX(0);
}
}
@media (prefers-reduced-motion: reduce) {
.pulsar-anomaly-corrupt * {
animation: none !important;
}
}