Doorstep Drop
CSSA destination marker sits on a horizontal datum as a consignment token arrives, expanding soft concentric ripple waves.
- Tier
- CSS
- Dependencies
- None
- Duration
- 4 s, loops
- Categories
- Loaders and spinners
- Use cases
- Loading and waiting, Workflow and approvals
- Industries
- Logistics and supply chain
- Style
- Minimal line · light stroke
- Set
- lastmile
- Tags
- minimallooppulsering
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-drop" data-pulsar="lastmile-delivery-drop" viewBox="0 0 160 96"><line x1="28" x2="132" y1="68" y2="68" stroke="currentColor" stroke-width="1.2" class="ground" opacity=".3"></line><circle cx="80" cy="68" r="8" stroke="var(--pulsar-accent, currentColor)" stroke-width="1.2" class="ring r1"></circle><circle cx="80" cy="68" r="18" stroke="var(--pulsar-accent, currentColor)" class="ring r2"></circle><circle cx="80" cy="68" r="28" stroke="currentColor" stroke-width=".8" class="ring r3"></circle><rect width="10" height="10" x="75" y="24" stroke="var(--pulsar-accent, currentColor)" stroke-width="1.4" class="token" rx="1.5"></rect></svg>
animation.css
.pulsar-lastmile-delivery-drop {
display: block;
width: 100%;
height: 100%;
}
.pulsar-lastmile-delivery-drop .token {
animation: lastmile-delivery-drop-fall 4s cubic-bezier(0.2, 0.8, 0.2, 1) infinite;
}
.pulsar-lastmile-delivery-drop .ring.r1 {
animation: lastmile-delivery-drop-ripple 4s cubic-bezier(0.2, 0.8, 0.2, 1) infinite;
}
.pulsar-lastmile-delivery-drop .ring.r2 {
animation: lastmile-delivery-drop-ripple 4s cubic-bezier(0.2, 0.8, 0.2, 1) infinite -0.4s;
}
.pulsar-lastmile-delivery-drop .ring.r3 {
animation: lastmile-delivery-drop-ripple 4s cubic-bezier(0.2, 0.8, 0.2, 1) infinite -0.8s;
}
@keyframes lastmile-delivery-drop-fall {
0% {
transform: translateY(0);
opacity: 0;
}
20% {
opacity: 1;
}
50% {
transform: translateY(34px);
opacity: 1;
}
80%,
100% {
transform: translateY(34px);
opacity: 0.2;
}
}
@keyframes lastmile-delivery-drop-ripple {
0%,
45% {
transform: scale(0.2);
transform-origin: 80px 68px;
opacity: 0;
}
55% {
opacity: 0.9;
}
85%,
100% {
transform: scale(1.2);
transform-origin: 80px 68px;
opacity: 0;
}
}
@media (prefers-reduced-motion: reduce) {
.pulsar-lastmile-delivery-drop .token,
.pulsar-lastmile-delivery-drop .ring.r1,
.pulsar-lastmile-delivery-drop .ring.r2,
.pulsar-lastmile-delivery-drop .ring.r3 {
animation: none;
transform: none;
opacity: 0.6;
}
.pulsar-lastmile-delivery-drop .token {
transform: translateY(34px);
opacity: 1;
}
}