ETA Countdown
CSSA calibrated dial circle sweeps with a measured hand while horizontal time cadence lines pulse in steady rhythm.
- Tier
- CSS
- Dependencies
- None
- Duration
- 4 s, loops
- Categories
- Loaders and spinners
- Use cases
- Loading and waiting, Scheduling and time
- Industries
- Logistics and supply chain, Cross-industry
- Style
- Minimal line · light stroke
- Set
- lastmile
- Tags
- circlebarsminimalloop
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-eta-countdown" data-pulsar="lastmile-eta-countdown" viewBox="0 0 160 96"><circle cx="54" cy="48" r="22" stroke="currentColor" stroke-width="1.2" class="dial"></circle><circle cx="54" cy="48" r="2" fill="currentColor" class="center-pin"></circle><line x1="54" x2="54" y1="48" y2="32" stroke="var(--pulsar-accent, currentColor)" stroke-linecap="round" stroke-width="1.5" class="hand"></line><g class="bars"><line x1="90" x2="132" y1="36" y2="36" stroke="currentColor" stroke-linecap="round" stroke-width="1.4" class="bar b1"></line><line x1="90" x2="124" y1="48" y2="48" stroke="var(--pulsar-accent, currentColor)" stroke-linecap="round" stroke-width="1.4" class="bar b2"></line><line x1="90" x2="138" y1="60" y2="60" stroke="currentColor" stroke-linecap="round" stroke-width="1.4" class="bar b3"></line></g></svg>
animation.css
.pulsar-lastmile-eta-countdown {
display: block;
width: 100%;
height: 100%;
}
.pulsar-lastmile-eta-countdown .hand {
animation: lastmile-eta-countdown-sweep 4s linear infinite;
transform-origin: 54px 48px;
}
.pulsar-lastmile-eta-countdown .bar.b1 {
animation: lastmile-eta-countdown-bar 4s ease-in-out infinite;
}
.pulsar-lastmile-eta-countdown .bar.b2 {
animation: lastmile-eta-countdown-bar 4s ease-in-out infinite -2.66s;
}
.pulsar-lastmile-eta-countdown .bar.b3 {
animation: lastmile-eta-countdown-bar 4s ease-in-out infinite -1.33s;
}
@keyframes lastmile-eta-countdown-sweep {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
@keyframes lastmile-eta-countdown-bar {
0%,
100% {
opacity: 0.25;
transform: scaleX(0.85);
transform-origin: 90px center;
}
50% {
opacity: 1;
transform: scaleX(1);
transform-origin: 90px center;
}
}
@media (prefers-reduced-motion: reduce) {
.pulsar-lastmile-eta-countdown .hand,
.pulsar-lastmile-eta-countdown .bar.b1,
.pulsar-lastmile-eta-countdown .bar.b2,
.pulsar-lastmile-eta-countdown .bar.b3 {
animation: none;
transform: none;
opacity: 1;
}
}