Fleet Sync
CSSThree parallel telemetry waveforms ripple across wireless dispatch channels in synchronized coordination.
- Tier
- CSS
- Dependencies
- None
- Duration
- 4 s, loops
- Categories
- Loaders and spinners
- Use cases
- Loading and waiting, Determinate progress
- Industries
- Logistics and supply chain, Cross-industry
- Style
- Minimal line · light stroke
- Set
- lastmile
- Tags
- wavelineminimalloop
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" aria-hidden="true" class="pulsar pulsar-lastmile-fleet-sync" data-pulsar="lastmile-fleet-sync" viewBox="0 0 160 96"><path stroke="currentColor" stroke-linecap="round" stroke-width="1.2" d="M28 34q18-8 36 0t36 0 36 0" class="ch-wave w1"></path><path stroke="var(--pulsar-accent, currentColor)" stroke-linecap="round" stroke-width="1.5" d="M24 48q20-8 40 0t40 0 36 0" class="ch-wave w2"></path><path stroke="currentColor" stroke-linecap="round" stroke-width="1.2" d="M28 62q18-8 36 0t36 0 36 0" class="ch-wave w3"></path></svg>
animation.css
.pulsar-lastmile-fleet-sync {
display: block;
width: 100%;
height: 100%;
}
.pulsar-lastmile-fleet-sync .ch-wave.w1 {
stroke-dasharray: 120;
animation: lastmile-fleet-sync-wave 4s ease-in-out infinite;
}
.pulsar-lastmile-fleet-sync .ch-wave.w2 {
stroke-dasharray: 120;
animation: lastmile-fleet-sync-wave 4s ease-in-out infinite -2.66s;
}
.pulsar-lastmile-fleet-sync .ch-wave.w3 {
stroke-dasharray: 120;
animation: lastmile-fleet-sync-wave 4s ease-in-out infinite -1.33s;
}
@keyframes lastmile-fleet-sync-wave {
0% {
stroke-dashoffset: 120;
opacity: 0.3;
}
50% {
stroke-dashoffset: 0;
opacity: 1;
}
100% {
stroke-dashoffset: -120;
opacity: 0.3;
}
}
@media (prefers-reduced-motion: reduce) {
.pulsar-lastmile-fleet-sync .ch-wave.w1,
.pulsar-lastmile-fleet-sync .ch-wave.w2,
.pulsar-lastmile-fleet-sync .ch-wave.w3 {
animation: none;
stroke-dashoffset: 0;
opacity: 1;
}
}