Phase
CSSTwo out-of-phase sine waves slide horizontally until their peaks and troughs match perfectly, showing phase synchronization.
- Tier
- CSS
- Dependencies
- None
- Duration
- 4 s, loops
- Categories
- Icons and micro-interactions
- Use cases
- Success and confirmation, Sync and integration
- Industries
- Manufacturing and industrial, Cross-industry
- Style
- Technical · light stroke
- Set
- calibrate
- Tags
- wavelineminimallooppulse
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-calibrate-phase" data-pulsar="calibrate-phase" viewBox="0 0 160 96"><rect width="100" height="48" x="30" y="24" stroke-width="1.5" opacity=".35" rx="4"></rect><line x1="80" x2="80" y1="24" y2="72" stroke-dasharray="2 3" opacity=".25"></line><line x1="30" x2="130" y1="48" y2="48" stroke-dasharray="2 3" opacity=".25"></line><path stroke-width="2" d="M34 48q12-20 24 0t24 0 24 0 20 0" class="calibrate-phase-ch-a" opacity=".5"></path><path stroke="var(--pulsar-accent, currentColor)" stroke-width="2" d="M34 48q12-20 24 0t24 0 24 0 20 0" class="calibrate-phase-ch-b"></path><circle cx="122" cy="30" r="2" fill="var(--pulsar-accent, currentColor)" stroke-width="0" class="calibrate-phase-lock-led"></circle></svg>
animation.css
.pulsar-calibrate-phase {
display: block;
overflow: visible;
}
.pulsar-calibrate-phase .calibrate-phase-ch-b {
animation: calibrate-phase-sync 4000ms cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
.pulsar-calibrate-phase .calibrate-phase-lock-led {
animation: calibrate-phase-led-blink 4000ms ease-in-out infinite;
}
@keyframes calibrate-phase-sync {
0% {
transform: translateX(-12px);
opacity: 0.6;
}
35%,
75% {
transform: translateX(0px);
opacity: 1;
}
92%,
100% {
transform: translateX(-12px);
opacity: 0.6;
}
}
@keyframes calibrate-phase-led-blink {
0%,
30% {
opacity: 0.2;
}
35%,
75% {
opacity: 1;
transform: scale(1.3);
}
90%,
100% {
opacity: 0.2;
}
}
@media (prefers-reduced-motion: reduce) {
.pulsar-calibrate-phase .calibrate-phase-ch-b,
.pulsar-calibrate-phase .calibrate-phase-lock-led {
animation: none;
transform: none;
opacity: 1;
}
}