Waypoint Progress
CSSAn indicator dot representing a delivery vehicle moves sequentially along a multi-segment trajectory, activating waypoint nodes.
- Tier
- CSS
- Dependencies
- None
- Duration
- 4 s, loops
- Categories
- Loaders and spinners
- Use cases
- Loading and waiting, Navigation and wayfinding
- Industries
- Logistics and supply chain, Cross-industry
- Style
- Minimal line · light stroke
- Set
- lastmile
- Tags
- linedotsprogressloop
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-vehicle-tracking" data-pulsar="lastmile-vehicle-tracking" viewBox="0 0 160 96"><polyline stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.2" points="28,64 62,32 98,64 132,32" class="track" opacity=".25"></polyline><circle cx="28" cy="64" r="4" stroke="currentColor" stroke-width="1.2" class="wp w1"></circle><circle cx="62" cy="32" r="4" stroke="currentColor" stroke-width="1.2" class="wp w2"></circle><circle cx="98" cy="64" r="4" stroke="currentColor" stroke-width="1.2" class="wp w3"></circle><circle cx="132" cy="32" r="4" stroke="var(--pulsar-accent, currentColor)" stroke-width="1.2" class="wp w4"></circle><circle cx="28" cy="64" r="3" fill="var(--pulsar-accent, currentColor)" class="tracer"></circle></svg>
animation.css
.pulsar-lastmile-vehicle-tracking {
display: block;
width: 100%;
height: 100%;
}
.pulsar-lastmile-vehicle-tracking .tracer {
animation: lastmile-vehicle-tracking-travel 4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
.pulsar-lastmile-vehicle-tracking .wp.w1 {
animation: lastmile-vehicle-tracking-pulse 4s ease-in-out infinite;
}
.pulsar-lastmile-vehicle-tracking .wp.w2 {
animation: lastmile-vehicle-tracking-pulse 4s ease-in-out infinite -3s;
}
.pulsar-lastmile-vehicle-tracking .wp.w3 {
animation: lastmile-vehicle-tracking-pulse 4s ease-in-out infinite -2s;
}
.pulsar-lastmile-vehicle-tracking .wp.w4 {
animation: lastmile-vehicle-tracking-pulse 4s ease-in-out infinite -1s;
}
@keyframes lastmile-vehicle-tracking-travel {
0%,
100% {
transform: translate(0, 0);
}
33% {
transform: translate(34px, -32px);
}
66% {
transform: translate(70px, 0);
}
90% {
transform: translate(104px, -32px);
}
}
@keyframes lastmile-vehicle-tracking-pulse {
0%,
100% {
opacity: 0.3;
transform: scale(0.9);
transform-origin: center;
}
50% {
opacity: 1;
transform: scale(1.2);
transform-origin: center;
}
}
@media (prefers-reduced-motion: reduce) {
.pulsar-lastmile-vehicle-tracking .tracer,
.pulsar-lastmile-vehicle-tracking .wp.w1,
.pulsar-lastmile-vehicle-tracking .wp.w2,
.pulsar-lastmile-vehicle-tracking .wp.w3,
.pulsar-lastmile-vehicle-tracking .wp.w4 {
animation: none;
transform: none;
opacity: 1;
}
}