Transit Load
CSSA cargo consignment outline fills smoothly with a diagonal wave pattern as freight transit advances.
- 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
- minimalloopprogressstroke
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-transit-load" data-pulsar="lastmile-transit-load" viewBox="0 0 160 96"><rect width="64" height="48" x="48" y="24" stroke="currentColor" stroke-width="1.2" class="box-bg" opacity=".25" rx="3"></rect><line x1="48" x2="112" y1="48" y2="48" stroke="currentColor" stroke-dasharray="2 2" class="box-seam" opacity=".4"></line><g class="waves"><line x1="56" x2="72" y1="64" y2="32" stroke="var(--pulsar-accent, currentColor)" stroke-linecap="round" stroke-width="1.5" class="wave w1"></line><line x1="72" x2="88" y1="64" y2="32" stroke="var(--pulsar-accent, currentColor)" stroke-linecap="round" stroke-width="1.5" class="wave w2"></line><line x1="88" x2="104" y1="64" y2="32" stroke="var(--pulsar-accent, currentColor)" stroke-linecap="round" stroke-width="1.5" class="wave w3"></line></g><circle cx="106" cy="30" r="2.5" fill="var(--pulsar-accent, currentColor)" class="status-dot"></circle></svg>
animation.css
.pulsar-lastmile-transit-load {
display: block;
width: 100%;
height: 100%;
}
.pulsar-lastmile-transit-load .wave.w1 {
animation: lastmile-transit-load-wave 4s ease-in-out infinite;
}
.pulsar-lastmile-transit-load .wave.w2 {
animation: lastmile-transit-load-wave 4s ease-in-out infinite -2.66s;
}
.pulsar-lastmile-transit-load .wave.w3 {
animation: lastmile-transit-load-wave 4s ease-in-out infinite -1.33s;
}
.pulsar-lastmile-transit-load .status-dot {
animation: lastmile-transit-load-pulse 4s ease-in-out infinite;
}
@keyframes lastmile-transit-load-wave {
0%,
100% {
opacity: 0.15;
transform: translateX(-4px);
}
50% {
opacity: 1;
transform: translateX(0);
}
}
@keyframes lastmile-transit-load-pulse {
0%,
100% {
opacity: 0.3;
transform: scale(0.8);
transform-origin: 106px 30px;
}
50% {
opacity: 1;
transform: scale(1.2);
transform-origin: 106px 30px;
}
}
@media (prefers-reduced-motion: reduce) {
.pulsar-lastmile-transit-load .wave.w1,
.pulsar-lastmile-transit-load .wave.w2,
.pulsar-lastmile-transit-load .wave.w3,
.pulsar-lastmile-transit-load .status-dot {
animation: none;
opacity: 1;
transform: none;
}
}