Interval Tick
CSSA vertical scale with tick marks lights up from bottom to top as a horizontal sweep line passes each division, signaling interval completions.
- 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
- barslineminimalpulsegeometric
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-interval-tick" data-pulsar="takt-interval-tick" viewBox="0 0 160 96"><line x1="62" x2="62" y1="18" y2="78" stroke-width="1.5" opacity=".35"></line><line x1="98" x2="98" y1="18" y2="78" stroke-width="1.5" opacity=".35"></line><line x1="62" x2="98" y1="68" y2="68" stroke="var(--pulsar-accent, currentColor)" stroke-width="2" class="takt-tick-rung r1"></line><line x1="62" x2="98" y1="52" y2="52" stroke="var(--pulsar-accent, currentColor)" stroke-width="2" class="takt-tick-rung r2"></line><line x1="62" x2="98" y1="36" y2="36" stroke="var(--pulsar-accent, currentColor)" stroke-width="2" class="takt-tick-rung r3"></line><line x1="62" x2="98" y1="20" y2="20" stroke="var(--pulsar-accent, currentColor)" stroke-width="2" class="takt-tick-rung r4"></line><g class="takt-tick-sweeper"><line x1="50" x2="110" y1="74" y2="74" stroke="var(--pulsar-accent, currentColor)" stroke-width="2.5"></line><circle cx="50" cy="74" r="2" fill="var(--pulsar-accent, currentColor)" stroke-width="0"></circle><circle cx="110" cy="74" r="2" fill="var(--pulsar-accent, currentColor)" stroke-width="0"></circle></g></svg>
animation.css
.pulsar-takt-interval-tick {
display: block;
overflow: visible;
}
.pulsar-takt-interval-tick .takt-tick-sweeper {
animation: takt-interval-tick-sweep 4000ms ease-in-out infinite;
}
.pulsar-takt-interval-tick .r1 {
animation: takt-interval-tick-rung-glow 4000ms ease-in-out infinite;
}
.pulsar-takt-interval-tick .r2 {
animation: takt-interval-tick-rung-glow 4000ms ease-in-out -1000ms infinite;
}
.pulsar-takt-interval-tick .r3 {
animation: takt-interval-tick-rung-glow 4000ms ease-in-out -2000ms infinite;
}
.pulsar-takt-interval-tick .r4 {
animation: takt-interval-tick-rung-glow 4000ms ease-in-out -3000ms infinite;
}
@keyframes takt-interval-tick-sweep {
0% {
transform: translateY(0px);
opacity: 0.3;
}
75% {
transform: translateY(-56px);
opacity: 1;
}
92%,
100% {
transform: translateY(0px);
opacity: 0.3;
}
}
@keyframes takt-interval-tick-rung-glow {
0%,
15% {
opacity: 0.3;
stroke-width: 1.5;
}
25%,
75% {
opacity: 1;
stroke-width: 2.5;
}
90%,
100% {
opacity: 0.3;
stroke-width: 1.5;
}
}
@media (prefers-reduced-motion: reduce) {
.pulsar-takt-interval-tick .takt-tick-sweeper,
.pulsar-takt-interval-tick .r1,
.pulsar-takt-interval-tick .r2,
.pulsar-takt-interval-tick .r3,
.pulsar-takt-interval-tick .r4 {
animation: none;
transform: none;
opacity: 1;
stroke-width: 2;
}
}