Pause
CSSA release train halts along a technical track, flashing a double-bar pause symbol on its main console.
- Tier
- CSS
- Dependencies
- None
- Duration
- 5.5 s, loops
- Categories
- Icons and micro-interactions
- Use cases
- Errors and warnings, Workflow and approvals
- Industries
- SaaS and software, Cross-industry
- Style
- Technical · light stroke
- Set
- rollout
- Tags
- barsgeometriclineloopui
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-pause" data-pulsar="rollout-pause" viewBox="0 0 160 96"><line x1="16" x2="144" y1="56" y2="56" stroke="currentColor" stroke-linecap="round" stroke-width="1.5" opacity=".3"></line><g id="rollout-pause-train" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"><rect width="36" height="24" x="62" y="32" fill="currentColor" fill-opacity=".06" rx="4"></rect><circle cx="70" cy="56" r="2.5" fill="currentColor"></circle><circle cx="90" cy="56" r="2.5" fill="currentColor"></circle></g><g id="rollout-pause-bars" stroke="var(--pulsar-accent, currentColor)" stroke-linecap="round" stroke-width="2.5"><line x1="77" x2="77" y1="39" y2="49"></line><line x1="83" x2="83" y1="39" y2="49"></line></g></svg>
animation.css
.pulsar-rollout-pause #rollout-pause-train {
animation: rollout-pause-train-stop 5500ms cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
@keyframes rollout-pause-train-stop {
0% {
transform: translateX(-36px);
}
30%,
80% {
transform: translateX(0);
}
92%,
100% {
transform: translateX(36px);
}
}
.pulsar-rollout-pause #rollout-pause-bars {
animation: rollout-pause-flash 5500ms ease-in-out infinite;
}
@keyframes rollout-pause-flash {
0%,
28% {
opacity: 0;
}
35%,
78% {
opacity: 1;
}
86%,
100% {
opacity: 0;
}
}
@media (prefers-reduced-motion: reduce) {
.pulsar-rollout-pause * {
animation: none !important;
}
}