Pipeline
CSSThree release stages illuminate sequentially from left to right as a delivery package passes through them.
- Tier
- CSS
- Dependencies
- None
- Duration
- 5.5 s, loops
- Categories
- Icons and micro-interactions
- Use cases
- Determinate progress, Workflow and approvals
- Industries
- SaaS and software, Cross-industry
- Style
- Technical · light stroke
- Set
- rollout
- Tags
- dotsgeometriclineloopprogress
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-pipeline" data-pulsar="rollout-pipeline" viewBox="0 0 160 96"><line x1="20" x2="140" y1="48" y2="48" stroke="currentColor" stroke-linecap="round" stroke-width="1.5" opacity=".3"></line><g id="rollout-pipeline-stage-1" stroke="currentColor" stroke-width="1.5"><circle cx="44" cy="48" r="10" fill="currentColor" fill-opacity=".06"></circle><circle cx="44" cy="48" r="3.5" fill="currentColor"></circle></g><g id="rollout-pipeline-stage-2" stroke="currentColor" stroke-width="1.5"><circle cx="80" cy="48" r="10" fill="currentColor" fill-opacity=".06"></circle><circle cx="80" cy="48" r="3.5" fill="currentColor"></circle></g><g id="rollout-pipeline-stage-3" stroke="currentColor" stroke-width="1.5"><circle cx="116" cy="48" r="10" fill="currentColor" fill-opacity=".06"></circle><circle cx="116" cy="48" r="3.5" fill="currentColor"></circle></g><circle id="rollout-pipeline-payload" cx="24" cy="48" r="4.5" fill="var(--pulsar-accent, currentColor)"></circle></svg>
animation.css
.pulsar-rollout-pipeline #rollout-pipeline-payload {
animation: rollout-pipeline-travel 5500ms cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
@keyframes rollout-pipeline-travel {
0% {
transform: translateX(0);
opacity: 0;
}
15% {
transform: translateX(20px);
opacity: 1;
}
45% {
transform: translateX(56px);
opacity: 1;
}
75% {
transform: translateX(92px);
opacity: 1;
}
88%,
100% {
transform: translateX(116px);
opacity: 0;
}
}
.pulsar-rollout-pipeline #rollout-pipeline-stage-1 {
animation: rollout-pipeline-stg1 5500ms ease-in-out infinite;
}
@keyframes rollout-pipeline-stg1 {
0%,
12% {
stroke: currentColor;
}
20%,
80% {
stroke: var(--pulsar-accent, currentColor);
}
90%,
100% {
stroke: currentColor;
}
}
.pulsar-rollout-pipeline #rollout-pipeline-stage-2 {
animation: rollout-pipeline-stg2 5500ms ease-in-out infinite;
}
@keyframes rollout-pipeline-stg2 {
0%,
38% {
stroke: currentColor;
}
48%,
80% {
stroke: var(--pulsar-accent, currentColor);
}
90%,
100% {
stroke: currentColor;
}
}
.pulsar-rollout-pipeline #rollout-pipeline-stage-3 {
animation: rollout-pipeline-stg3 5500ms ease-in-out infinite;
}
@keyframes rollout-pipeline-stg3 {
0%,
68% {
stroke: currentColor;
}
78%,
88% {
stroke: var(--pulsar-accent, currentColor);
}
95%,
100% {
stroke: currentColor;
}
}
@media (prefers-reduced-motion: reduce) {
.pulsar-rollout-pipeline * {
animation: none !important;
}
}