Work in Progress
CSSA vertical bar chart with five stacked segments adjusts height as the volume of work-in-progress fluctuates.
- 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
- chartbarsminimallinescale
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-work-in-progress" data-pulsar="takt-work-in-progress" viewBox="0 0 160 96"><line x1="50" x2="110" y1="78" y2="78" stroke-width="1.5" opacity=".35"></line><g class="takt-wip-stack"><rect width="28" height="10" x="66" y="66" fill="currentColor" fill-opacity=".1" stroke="var(--pulsar-accent, currentColor)" stroke-width="1.5" class="takt-wip-tier t1" rx="1.5"></rect><rect width="28" height="10" x="66" y="54" fill="currentColor" fill-opacity=".1" stroke="var(--pulsar-accent, currentColor)" stroke-width="1.5" class="takt-wip-tier t2" rx="1.5"></rect><rect width="28" height="10" x="66" y="42" fill="currentColor" fill-opacity=".1" stroke="var(--pulsar-accent, currentColor)" stroke-width="1.5" class="takt-wip-tier t3" rx="1.5"></rect><rect width="28" height="10" x="66" y="30" fill="currentColor" fill-opacity=".1" stroke="var(--pulsar-accent, currentColor)" stroke-width="1.5" class="takt-wip-tier t4" rx="1.5"></rect><rect width="28" height="10" x="66" y="18" fill="currentColor" fill-opacity=".1" stroke="var(--pulsar-accent, currentColor)" stroke-width="1.5" class="takt-wip-tier t5" rx="1.5"></rect></g></svg>
animation.css
.pulsar-takt-work-in-progress {
display: block;
overflow: visible;
}
.pulsar-takt-work-in-progress .t1 {
animation: takt-work-in-progress-accumulate 4000ms ease-in-out infinite;
}
.pulsar-takt-work-in-progress .t2 {
animation: takt-work-in-progress-accumulate 4000ms ease-in-out -400ms infinite;
}
.pulsar-takt-work-in-progress .t3 {
animation: takt-work-in-progress-accumulate 4000ms ease-in-out -800ms infinite;
}
.pulsar-takt-work-in-progress .t4 {
animation: takt-work-in-progress-accumulate 4000ms ease-in-out -1200ms infinite;
}
.pulsar-takt-work-in-progress .t5 {
animation: takt-work-in-progress-accumulate 4000ms ease-in-out -1600ms infinite;
}
@keyframes takt-work-in-progress-accumulate {
0%,
15% {
opacity: 0.15;
transform: scale(0.9);
}
45%,
75% {
opacity: 1;
transform: scale(1);
}
92%,
100% {
opacity: 0.15;
transform: scale(0.9);
}
}
@media (prefers-reduced-motion: reduce) {
.pulsar-takt-work-in-progress .t1,
.pulsar-takt-work-in-progress .t2,
.pulsar-takt-work-in-progress .t3,
.pulsar-takt-work-in-progress .t4,
.pulsar-takt-work-in-progress .t5 {
animation: none;
opacity: 1;
transform: none;
}
}