Cycle Progress
CSSA circular ring fills clockwise to represent a single cycle completion, then drains smoothly and begins filling again, with a takt-time marker snapping in each cycle.
- Tier
- CSS
- Dependencies
- None
- Duration
- 4 s, loops
- Categories
- Data and progress
- Use cases
- Determinate progress, Dashboards and reporting
- Industries
- Manufacturing and industrial, Cross-industry
- Style
- Data mark · light stroke
- Set
- takt
- Tags
- ringcircleprogressminimalstroke
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" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true" class="pulsar pulsar-takt-cycle-progress" data-pulsar="takt-cycle-progress" viewBox="0 0 160 96"><circle cx="80" cy="48" r="30" stroke-width="1.5" opacity=".3"></circle><line x1="80" x2="80" y1="12" y2="18" stroke="var(--pulsar-accent, currentColor)" stroke-width="2"></line><circle cx="80" cy="48" r="30" stroke="var(--pulsar-accent, currentColor)" stroke-dasharray="188.5" stroke-dashoffset="188.5" stroke-width="2.5" class="takt-cycle-ring"></circle><g class="takt-cycle-target"><circle cx="80" cy="18" r="3" fill="var(--pulsar-accent, currentColor)" stroke-width="0"></circle><polyline stroke="var(--pulsar-accent, currentColor)" stroke-width="1.8" points="77 48, 79 50, 83 46"></polyline></g></svg>
animation.css
.pulsar-takt-cycle-progress {
display: block;
overflow: visible;
}
.pulsar-takt-cycle-progress .takt-cycle-ring {
transform-origin: 80px 48px;
transform: rotate(-90deg);
animation: takt-cycle-progress-fill 4000ms cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
.pulsar-takt-cycle-progress .takt-cycle-target {
animation: takt-cycle-progress-snap 4000ms ease-out infinite;
}
@keyframes takt-cycle-progress-fill {
0% {
stroke-dashoffset: 188.5;
opacity: 0.8;
}
70% {
stroke-dashoffset: 0;
opacity: 1;
}
85% {
stroke-dashoffset: 0;
opacity: 0.4;
}
98%,
100% {
stroke-dashoffset: 188.5;
opacity: 0.8;
}
}
@keyframes takt-cycle-progress-snap {
0%,
65% {
transform: scale(0.6);
opacity: 0;
}
72% {
opacity: 1;
transform: scale(1.3);
}
85% {
transform: scale(1);
opacity: 0.9;
}
95%,
100% {
transform: scale(0.6);
opacity: 0;
}
}
@media (prefers-reduced-motion: reduce) {
.pulsar-takt-cycle-progress .takt-cycle-ring,
.pulsar-takt-cycle-progress .takt-cycle-target {
animation: none;
stroke-dashoffset: 47;
opacity: 1;
transform: none;
}
}