Delivery Confirmation
CSSAn optical verification iris rotates gently to reveal a confirmed delivery stroke and verification receipt datum.
- Tier
- CSS
- Dependencies
- None
- Duration
- 4 s, loops
- Categories
- Loaders and spinners
- Use cases
- Loading and waiting, Success and confirmation
- Industries
- Logistics and supply chain, Cross-industry
- Style
- Minimal line · light stroke
- Set
- lastmile
- Tags
- minimalstrokeloopburst
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-proof-of-delivery" data-pulsar="lastmile-proof-of-delivery" viewBox="0 0 160 96"><circle cx="80" cy="44" r="20" stroke="currentColor" stroke-dasharray="8 4" stroke-width="1.2" class="iris"></circle><path stroke="var(--pulsar-accent, currentColor)" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.8" d="m72 44 6 6 12-12" class="check"></path><line x1="80" x2="80" y1="68" y2="78" stroke="currentColor" stroke-linecap="round" stroke-width="1.2" class="datum-up"></line><circle cx="80" cy="44" r="26" stroke="var(--pulsar-accent, currentColor)" stroke-width=".8" class="status-ping" opacity=".3"></circle></svg>
animation.css
.pulsar-lastmile-proof-of-delivery {
display: block;
width: 100%;
height: 100%;
}
.pulsar-lastmile-proof-of-delivery .iris {
animation: lastmile-proof-of-delivery-rotate 4s linear infinite;
transform-origin: 80px 44px;
}
.pulsar-lastmile-proof-of-delivery .check {
stroke-dasharray: 30;
animation: lastmile-proof-of-delivery-check 4s ease-in-out infinite;
}
.pulsar-lastmile-proof-of-delivery .datum-up {
animation: lastmile-proof-of-delivery-datum 4s ease-in-out infinite;
}
.pulsar-lastmile-proof-of-delivery .status-ping {
animation: lastmile-proof-of-delivery-ping 4s ease-in-out infinite;
}
@keyframes lastmile-proof-of-delivery-rotate {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
@keyframes lastmile-proof-of-delivery-check {
0%,
20% {
stroke-dashoffset: 30;
opacity: 0;
}
50%,
80% {
stroke-dashoffset: 0;
opacity: 1;
}
100% {
stroke-dashoffset: 0;
opacity: 0.2;
}
}
@keyframes lastmile-proof-of-delivery-datum {
0%,
100% {
transform: translateY(0);
opacity: 0.3;
}
50% {
transform: translateY(-4px);
opacity: 1;
}
}
@keyframes lastmile-proof-of-delivery-ping {
0%,
40% {
transform: scale(0.8);
transform-origin: 80px 44px;
opacity: 0;
}
60% {
opacity: 0.6;
}
85%,
100% {
transform: scale(1.2);
transform-origin: 80px 44px;
opacity: 0;
}
}
@media (prefers-reduced-motion: reduce) {
.pulsar-lastmile-proof-of-delivery .iris,
.pulsar-lastmile-proof-of-delivery .check,
.pulsar-lastmile-proof-of-delivery .datum-up,
.pulsar-lastmile-proof-of-delivery .status-ping {
animation: none;
transform: none;
stroke-dashoffset: 0;
opacity: 1;
}
}