Increment
CSSA step indicator ticks upward from one node to the next, locking each stage in with a technical check tick.
- Tier
- CSS
- Dependencies
- None
- Duration
- 5.5 s, loops
- Categories
- Icons and micro-interactions
- Use cases
- Determinate progress, Success and confirmation
- Industries
- SaaS and software, Cross-industry
- Style
- Technical · light stroke
- Set
- rollout
- Tags
- barsgeometricloopprogresspulse
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-increment" data-pulsar="rollout-increment" viewBox="0 0 160 96"><g stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.2"><rect id="rollout-increment-col-1" width="18" height="16" x="30" y="58" fill="currentColor" fill-opacity=".06" rx="2"></rect><rect id="rollout-increment-col-2" width="18" height="28" x="58" y="46" fill="currentColor" fill-opacity=".06" rx="2"></rect><rect id="rollout-increment-col-3" width="18" height="40" x="86" y="34" fill="currentColor" fill-opacity=".06" rx="2"></rect><rect id="rollout-increment-col-4" width="18" height="52" x="114" y="22" fill="currentColor" fill-opacity=".06" rx="2"></rect></g><line x1="20" x2="140" y1="74" y2="74" stroke="currentColor" stroke-linecap="round" stroke-width="1.5"></line><g id="rollout-increment-stamp" stroke="var(--pulsar-accent, currentColor)" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.8"><polyline points="35,52 38,55 44,48"></polyline></g></svg>
animation.css
.pulsar-rollout-increment #rollout-increment-stamp {
animation: rollout-increment-climb 5500ms cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
@keyframes rollout-increment-climb {
0%,
15% {
transform: translate(0, 0);
opacity: 1;
}
25%,
40% {
transform: translate(28px, -12px);
opacity: 1;
}
50%,
65% {
transform: translate(56px, -24px);
opacity: 1;
}
75%,
85% {
transform: translate(84px, -36px);
opacity: 1;
}
92%,
100% {
transform: translate(0, 0);
opacity: 0;
}
}
.pulsar-rollout-increment #rollout-increment-col-1 {
animation: rollout-increment-c1 5500ms ease-in-out infinite;
}
@keyframes rollout-increment-c1 {
0%,
15% {
stroke: var(--pulsar-accent, currentColor);
fill-opacity: 0.15;
}
90%,
100% {
stroke: currentColor;
fill-opacity: 0.06;
}
}
.pulsar-rollout-increment #rollout-increment-col-2 {
animation: rollout-increment-c2 5500ms ease-in-out infinite;
}
@keyframes rollout-increment-c2 {
0%,
25% {
stroke: currentColor;
}
30%,
85% {
stroke: var(--pulsar-accent, currentColor);
fill-opacity: 0.15;
}
92%,
100% {
stroke: currentColor;
}
}
.pulsar-rollout-increment #rollout-increment-col-3 {
animation: rollout-increment-c3 5500ms ease-in-out infinite;
}
@keyframes rollout-increment-c3 {
0%,
50% {
stroke: currentColor;
}
55%,
85% {
stroke: var(--pulsar-accent, currentColor);
fill-opacity: 0.15;
}
92%,
100% {
stroke: currentColor;
}
}
.pulsar-rollout-increment #rollout-increment-col-4 {
animation: rollout-increment-c4 5500ms ease-in-out infinite;
}
@keyframes rollout-increment-c4 {
0%,
75% {
stroke: currentColor;
}
80%,
88% {
stroke: var(--pulsar-accent, currentColor);
fill-opacity: 0.15;
}
95%,
100% {
stroke: currentColor;
}
}
@media (prefers-reduced-motion: reduce) {
.pulsar-rollout-increment * {
animation: none !important;
}
}