Delivery Release
CSSAn authorization wave vector draws horizontally across a validation baseline to engage a definitive terminal release latch.
- Tier
- CSS
- Dependencies
- None
- Duration
- 4 s, loops
- Categories
- Data and progress
- Use cases
- Success and confirmation, Documents and files
- Industries
- Logistics and supply chain, Cross-industry
- Style
- Data mark · light stroke
- Set
- manifest
- Tags
- lineprogresswave
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" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true" class="pulsar pulsar-manifest-signature" data-pulsar="manifest-signature" viewBox="0 0 160 96"><line x1="32" x2="128" y1="56" y2="56" stroke-width="1.5" opacity=".35"></line><path stroke="var(--pulsar-accent, currentColor)" stroke-width="2" d="M38 56q12-20 24-4t24-8 24 6" class="sig-wave"></path><rect width="16" height="16" x="114" y="44" fill="var(--pulsar-accent, currentColor)" fill-opacity=".2" stroke="var(--pulsar-accent, currentColor)" stroke-width="1.5" class="release-latch" rx="2"></rect></svg>
animation.css
.pulsar-manifest-signature {
display: block;
overflow: visible;
}
.pulsar-manifest-signature .sig-wave {
stroke-dasharray: 90;
stroke-dashoffset: 90;
animation: manifest-signature-wave 4000ms ease-in-out infinite;
}
.pulsar-manifest-signature .release-latch {
animation: manifest-signature-latch 4000ms ease-in-out infinite;
}
@keyframes manifest-signature-wave {
0%,
15% {
stroke-dashoffset: 90;
opacity: 0;
}
25% {
opacity: 1;
}
55%,
80% {
stroke-dashoffset: 0;
opacity: 1;
}
92%,
100% {
stroke-dashoffset: -90;
opacity: 0;
}
}
@keyframes manifest-signature-latch {
0%,
45% {
transform: scale(0.8);
opacity: 0.3;
}
60%,
85% {
transform: scale(1.1);
opacity: 1;
}
95%,
100% {
transform: scale(0.8);
opacity: 0.3;
}
}
@media (prefers-reduced-motion: reduce) {
.pulsar-manifest-signature .sig-wave,
.pulsar-manifest-signature .release-latch {
animation: none;
transform: none;
opacity: 1;
stroke-dashoffset: 0;
}
}