Rollback State
CSSA circular history arrow spins counterclockwise, rewinding a miniature progress wheel inside it.
- Tier
- CSS
- Dependencies
- None
- Duration
- 5.5 s, loops
- Categories
- Icons and micro-interactions
- Use cases
- Errors and warnings, Automation and rules
- Industries
- SaaS and software, Cross-industry
- Style
- Minimal line · light stroke
- Set
- changelog
- Tags
- arrowcircleloopminimalrotate
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-changelog-rollback-state" data-pulsar="changelog-rollback-state" viewBox="0 0 160 96"><circle cx="80" cy="48" r="28" stroke="currentColor" stroke-dasharray="2 4" opacity=".3"></circle><g id="changelog-rollback-state-arrow" stroke="var(--pulsar-accent, currentColor)" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.8"><path d="M80 20a28 28 0 1 0 28 28"></path><polyline points="74,15 80,20 74,25"></polyline></g><g id="changelog-rollback-state-ticks" stroke="currentColor" stroke-linecap="round" stroke-width="1.5"><line x1="80" x2="80" y1="36" y2="40"></line><line x1="92" x2="88" y1="48" y2="48"></line><line x1="80" x2="80" y1="60" y2="56"></line><line x1="68" x2="72" y1="48" y2="48"></line></g><circle cx="80" cy="48" r="3" fill="var(--pulsar-accent, currentColor)"></circle></svg>
animation.css
.pulsar-changelog-rollback-state #changelog-rollback-state-arrow {
transform-origin: 80px 48px;
animation: changelog-rollback-state-spin 5500ms cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
@keyframes changelog-rollback-state-spin {
0% {
transform: rotate(0deg);
}
50%,
82% {
transform: rotate(-360deg);
}
100% {
transform: rotate(-360deg);
}
}
.pulsar-changelog-rollback-state #changelog-rollback-state-ticks {
transform-origin: 80px 48px;
animation: changelog-rollback-state-ticks-anim 5500ms linear infinite;
}
@keyframes changelog-rollback-state-ticks-anim {
0% {
transform: rotate(0deg);
opacity: 0.8;
}
50%,
82% {
transform: rotate(-180deg);
opacity: 0.3;
}
100% {
transform: rotate(-180deg);
opacity: 0.8;
}
}
@media (prefers-reduced-motion: reduce) {
.pulsar-changelog-rollback-state * {
animation: none !important;
}
}