Rollback
CSSAn active release progress bar reverses direction, sliding back to zero as a warning flag rises.
- Tier
- CSS
- Dependencies
- None
- Duration
- 5.5 s, loops
- Categories
- Icons and micro-interactions
- Use cases
- Errors and warnings, Transitions and reveals
- Industries
- SaaS and software, Cross-industry
- Style
- Technical · light stroke
- Set
- rollout
- Tags
- arrowlineloopprogressui
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-rollout-rollback" data-pulsar="rollout-rollback" viewBox="0 0 160 96"><rect width="112" height="12" x="24" y="44" fill="currentColor" fill-opacity=".04" stroke="currentColor" stroke-width="1.2" rx="6"></rect><rect id="rollout-rollback-bar" width="80" height="8" x="26" y="46" fill="var(--pulsar-accent, currentColor)" rx="4"></rect><g id="rollout-rollback-flag" stroke="var(--pulsar-accent, currentColor)" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"><line x1="106" x2="106" y1="20" y2="40"></line><polygon fill="var(--pulsar-accent, currentColor)" fill-opacity=".2" points="106,20 120,26 106,32"></polygon></g></svg>
animation.css
.pulsar-rollout-rollback #rollout-rollback-bar {
animation: rollout-rollback-slide 5500ms cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
@keyframes rollout-rollback-slide {
0%,
25% {
width: 80px;
opacity: 1;
}
42%,
82% {
width: 8px;
opacity: 0.4;
}
92%,
100% {
width: 80px;
opacity: 1;
}
}
.pulsar-rollout-rollback #rollout-rollback-flag {
animation: rollout-rollback-flag-rise 5500ms cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
@keyframes rollout-rollback-flag-rise {
0%,
22% {
transform: translateY(12px);
opacity: 0;
}
32%,
80% {
transform: translateY(0);
opacity: 1;
}
90%,
100% {
transform: translateY(12px);
opacity: 0;
}
}
@media (prefers-reduced-motion: reduce) {
.pulsar-rollout-rollback * {
animation: none !important;
}
}