Delivery Window
CSSInterval aperture brackets expand along a horizontal timeline rail as a scheduled consignment datum aligns.
- 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
- Style
- Minimal line · light stroke
- Set
- lastmile
- Tags
- lineminimalloopprogress
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-delivery-window" data-pulsar="lastmile-delivery-window" viewBox="0 0 160 96"><line x1="24" x2="136" y1="48" y2="48" stroke="currentColor" stroke-width="1.2" class="rail" opacity=".25"></line><path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.4" d="M68 36h-6v24h6" class="b-left"></path><path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.4" d="M92 36h6v24h-6" class="b-right"></path><line x1="80" x2="80" y1="40" y2="56" stroke="var(--pulsar-accent, currentColor)" stroke-linecap="round" stroke-width="1.8" class="slot-focus"></line><circle cx="40" cy="48" r="3.5" fill="var(--pulsar-accent, currentColor)" class="token"></circle></svg>
animation.css
.pulsar-lastmile-delivery-window {
display: block;
width: 100%;
height: 100%;
}
.pulsar-lastmile-delivery-window .b-left {
animation: lastmile-delivery-window-bleft 4s ease-in-out infinite;
}
.pulsar-lastmile-delivery-window .b-right {
animation: lastmile-delivery-window-bright 4s ease-in-out infinite;
}
.pulsar-lastmile-delivery-window .slot-focus {
animation: lastmile-delivery-window-focus 4s ease-in-out infinite;
}
.pulsar-lastmile-delivery-window .token {
animation: lastmile-delivery-window-token 4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
@keyframes lastmile-delivery-window-bleft {
0%,
100% {
transform: translateX(0);
}
50% {
transform: translateX(-10px);
}
}
@keyframes lastmile-delivery-window-bright {
0%,
100% {
transform: translateX(0);
}
50% {
transform: translateX(10px);
}
}
@keyframes lastmile-delivery-window-focus {
0%,
100% {
opacity: 0.2;
transform: scaleY(0.7);
transform-origin: 80px 48px;
}
50% {
opacity: 1;
transform: scaleY(1.2);
transform-origin: 80px 48px;
}
}
@keyframes lastmile-delivery-window-token {
0% {
transform: translateX(0);
opacity: 0;
}
20% {
opacity: 1;
}
50%,
80% {
transform: translateX(40px);
opacity: 1;
}
100% {
transform: translateX(70px);
opacity: 0;
}
}
@media (prefers-reduced-motion: reduce) {
.pulsar-lastmile-delivery-window .b-left,
.pulsar-lastmile-delivery-window .b-right,
.pulsar-lastmile-delivery-window .slot-focus,
.pulsar-lastmile-delivery-window .token {
animation: none;
transform: none;
opacity: 1;
}
}