Changeover
CSSA segmented mechanical indexing dial switches between distinct geometric hatch patterns to illustrate production run changeovers.
- Tier
- CSS
- Dependencies
- None
- Duration
- 4 s, loops
- Categories
- Data and progress
- Use cases
- Transitions and reveals, Workflow and approvals
- Industries
- Manufacturing and industrial, Cross-industry
- Style
- Data mark · light stroke
- Set
- takt
- Tags
- circlerotateminimalgeometricline
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-changeover" data-pulsar="takt-changeover" viewBox="0 0 160 96"><circle cx="80" cy="48" r="32" stroke-width="1.5" opacity=".35"></circle><g class="takt-changeover-wheel"><circle cx="80" cy="48" r="26" stroke="var(--pulsar-accent, currentColor)" stroke-width="2"></circle><line x1="80" x2="80" y1="22" y2="74" stroke="var(--pulsar-accent, currentColor)" stroke-width="1.5"></line><line x1="54" x2="106" y1="48" y2="48" stroke="var(--pulsar-accent, currentColor)" stroke-width="1.5"></line><circle cx="68" cy="36" r="2.5" fill="var(--pulsar-accent, currentColor)" stroke-width="0"></circle><rect width="6" height="6" x="88" y="32" stroke="var(--pulsar-accent, currentColor)" stroke-width="1.2"></rect><line x1="65" x2="71" y1="58" y2="64" stroke="var(--pulsar-accent, currentColor)" stroke-width="1.5"></line><circle cx="92" cy="60" r="3" stroke="var(--pulsar-accent, currentColor)" stroke-dasharray="2 2" stroke-width="1.2"></circle></g><polygon fill="var(--pulsar-accent, currentColor)" stroke="var(--pulsar-accent, currentColor)" stroke-width="1.5" points="80 12, 84 18, 76 18"></polygon></svg>
animation.css
.pulsar-takt-changeover {
display: block;
overflow: visible;
}
.pulsar-takt-changeover .takt-changeover-wheel {
transform-origin: 80px 48px;
animation: takt-changeover-step 4000ms cubic-bezier(0.3, 1.3, 0.4, 1) infinite;
}
@keyframes takt-changeover-step {
0%,
15% {
transform: rotate(0deg);
}
35%,
65% {
transform: rotate(90deg);
}
85%,
100% {
transform: rotate(180deg);
}
}
@media (prefers-reduced-motion: reduce) {
.pulsar-takt-changeover .takt-changeover-wheel {
animation: none;
transform: rotate(90deg);
}
}