Run Rate
CSSA horizontal bar graph fluctuates up and down around a dotted horizontal target line, demonstrating the real-time production rate against target.
- 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
- chartbarslineminimalprogress
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-run-rate" data-pulsar="takt-run-rate" viewBox="0 0 160 96"><line x1="30" x2="130" y1="74" y2="74" stroke-width="1.5" opacity=".35"></line><line x1="30" x2="130" y1="44" y2="44" stroke="var(--pulsar-accent, currentColor)" stroke-dasharray="3 3" stroke-width="1.5"></line><rect width="12" height="12" x="122" y="38" stroke="var(--pulsar-accent, currentColor)" opacity=".7" rx="2"></rect><rect width="12" height="30" x="38" y="44" fill="currentColor" fill-opacity=".08" stroke="var(--pulsar-accent, currentColor)" stroke-width="1.5" class="takt-rate-bar b1" rx="2"></rect><rect width="12" height="36" x="56" y="38" fill="currentColor" fill-opacity=".08" stroke="var(--pulsar-accent, currentColor)" stroke-width="1.5" class="takt-rate-bar b2" rx="2"></rect><rect width="12" height="30" x="74" y="44" fill="currentColor" fill-opacity=".15" stroke="var(--pulsar-accent, currentColor)" stroke-width="1.5" class="takt-rate-bar b3" rx="2"></rect><rect width="12" height="26" x="92" y="48" fill="currentColor" fill-opacity=".08" stroke="var(--pulsar-accent, currentColor)" stroke-width="1.5" class="takt-rate-bar b4" rx="2"></rect><rect width="12" height="32" x="110" y="42" fill="currentColor" fill-opacity=".08" stroke="var(--pulsar-accent, currentColor)" stroke-width="1.5" class="takt-rate-bar b5" rx="2"></rect></svg>
animation.css
.pulsar-takt-run-rate {
display: block;
overflow: visible;
}
.pulsar-takt-run-rate .b1 {
transform-origin: 44px 74px;
animation: takt-run-rate-pulse 4000ms ease-in-out infinite;
}
.pulsar-takt-run-rate .b2 {
transform-origin: 62px 74px;
animation: takt-run-rate-pulse 4000ms ease-in-out -800ms infinite;
}
.pulsar-takt-run-rate .b3 {
transform-origin: 80px 74px;
animation: takt-run-rate-pulse 4000ms ease-in-out -1600ms infinite;
}
.pulsar-takt-run-rate .b4 {
transform-origin: 98px 74px;
animation: takt-run-rate-pulse 4000ms ease-in-out -2400ms infinite;
}
.pulsar-takt-run-rate .b5 {
transform-origin: 116px 74px;
animation: takt-run-rate-pulse 4000ms ease-in-out -3200ms infinite;
}
@keyframes takt-run-rate-pulse {
0%,
100% {
transform: scaleY(0.9);
}
50% {
transform: scaleY(1.18);
}
}
@media (prefers-reduced-motion: reduce) {
.pulsar-takt-run-rate .b1,
.pulsar-takt-run-rate .b2,
.pulsar-takt-run-rate .b3,
.pulsar-takt-run-rate .b4,
.pulsar-takt-run-rate .b5 {
animation: none;
transform: none;
}
}