Update
CSSA stack of three horizontal bars has its middle bar slide out and get replaced by a new glowing bar that locks into place.
- Tier
- CSS
- Dependencies
- None
- Duration
- 4.5 s, loops
- Categories
- Icons and micro-interactions
- Use cases
- Sync and integration, Security and trust
- Industries
- SaaS and software, Security and identity
- Style
- Minimal line · light stroke
- Set
- patch
- Tags
- barsglowgeometricminimalui
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-patch-update" data-pulsar="patch-update" viewBox="0 0 160 96"><rect width="96" height="56" x="32" y="20" stroke="currentColor" stroke-width="1.5" opacity=".4" rx="6"></rect><rect width="80" height="10" x="40" y="28" fill="currentColor" stroke="currentColor" stroke-width="1.5" opacity=".25" rx="3"></rect><rect width="80" height="10" x="40" y="58" fill="currentColor" stroke="currentColor" stroke-width="1.5" opacity=".25" rx="3"></rect><g class="patch-update-old"><rect width="80" height="10" x="40" y="43" fill="currentColor" stroke="currentColor" stroke-width="1.5" opacity=".4" rx="3"></rect></g><g class="patch-update-new"><rect width="80" height="10" x="40" y="43" fill="var(--pulsar-accent, currentColor)" fill-opacity=".2" stroke="var(--pulsar-accent, currentColor)" stroke-width="2" rx="3"></rect><circle cx="50" cy="48" r="2" fill="var(--pulsar-accent, currentColor)"></circle><line x1="58" x2="110" y1="48" y2="48" stroke="var(--pulsar-accent, currentColor)" stroke-linecap="round" stroke-width="1.5"></line></g></svg>
animation.css
.pulsar-patch-update {
display: block;
overflow: visible;
}
.pulsar-patch-update .patch-update-old {
animation: patch-update-old-anim 4500ms cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
.pulsar-patch-update .patch-update-new {
animation: patch-update-new-anim 4500ms cubic-bezier(0.2, 1, 0.3, 1) infinite;
}
@keyframes patch-update-old-anim {
0%,
15% {
transform: translateX(0);
opacity: 0.8;
}
32% {
transform: translateX(45px);
opacity: 0;
}
85% {
transform: translateX(45px);
opacity: 0;
}
95%,
100% {
transform: translateX(0);
opacity: 0.8;
}
}
@keyframes patch-update-new-anim {
0%,
25% {
transform: translateX(-45px);
opacity: 0;
}
42% {
transform: translateX(0);
opacity: 1;
}
80% {
transform: translateX(0);
opacity: 1;
}
88%,
100% {
transform: translateX(-45px);
opacity: 0;
}
}
@media (prefers-reduced-motion: reduce) {
.pulsar-patch-update * {
animation: none !important;
}
}