Waybill Generation
CSSDigital waybill readout rows draw in sequentially from left to right with routing metrics and barcode tick rules.
- Tier
- CSS
- Dependencies
- None
- Duration
- 4 s, loops
- Categories
- Data and progress
- Use cases
- Determinate progress, Documents and files
- Industries
- Logistics and supply chain, Cross-industry
- Style
- Data mark · light stroke
- Set
- manifest
- Tags
- barslineminimal
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-waybill" data-pulsar="manifest-waybill" viewBox="0 0 160 96"><rect width="92" height="56" x="34" y="20" stroke-width="1.5" opacity=".35" rx="3"></rect><line x1="42" x2="72" y1="30" y2="30" stroke="var(--pulsar-accent, currentColor)" stroke-width="2" class="row r1"></line><line x1="42" x2="118" y1="42" y2="42" stroke-width="1.5" class="row r2"></line><line x1="42" x2="98" y1="52" y2="52" stroke-width="1.5" class="row r3"></line><g class="barcode-ticks"><line x1="42" x2="42" y1="64" y2="70" stroke="var(--pulsar-accent, currentColor)" stroke-width="1.5"></line><line x1="48" x2="48" y1="64" y2="70" stroke="var(--pulsar-accent, currentColor)" stroke-width="1.5"></line><line x1="54" x2="54" y1="64" y2="70" stroke="var(--pulsar-accent, currentColor)" stroke-width="1.5"></line><line x1="62" x2="62" y1="64" y2="70" stroke="var(--pulsar-accent, currentColor)" stroke-width="1.5"></line><line x1="70" x2="70" y1="64" y2="70" stroke="var(--pulsar-accent, currentColor)" stroke-width="1.5"></line></g></svg>
animation.css
.pulsar-manifest-waybill {
display: block;
overflow: visible;
}
.pulsar-manifest-waybill .row.r1 {
stroke-dasharray: 30;
stroke-dashoffset: 30;
animation: manifest-waybill-r1 4000ms ease-in-out infinite;
}
.pulsar-manifest-waybill .row.r2 {
stroke-dasharray: 76;
stroke-dashoffset: 76;
animation: manifest-waybill-r2 4000ms ease-in-out infinite;
}
.pulsar-manifest-waybill .row.r3 {
stroke-dasharray: 56;
stroke-dashoffset: 56;
animation: manifest-waybill-r3 4000ms ease-in-out infinite;
}
.pulsar-manifest-waybill .barcode-ticks {
animation: manifest-waybill-ticks 4000ms ease-in-out infinite;
}
@keyframes manifest-waybill-r1 {
0%,
10% {
stroke-dashoffset: 30;
opacity: 0;
}
25%,
85% {
stroke-dashoffset: 0;
opacity: 1;
}
95%,
100% {
stroke-dashoffset: 30;
opacity: 0;
}
}
@keyframes manifest-waybill-r2 {
0%,
25% {
stroke-dashoffset: 76;
opacity: 0;
}
45%,
85% {
stroke-dashoffset: 0;
opacity: 0.8;
}
95%,
100% {
stroke-dashoffset: 76;
opacity: 0;
}
}
@keyframes manifest-waybill-r3 {
0%,
40% {
stroke-dashoffset: 56;
opacity: 0;
}
60%,
85% {
stroke-dashoffset: 0;
opacity: 0.8;
}
95%,
100% {
stroke-dashoffset: 56;
opacity: 0;
}
}
@keyframes manifest-waybill-ticks {
0%,
55% {
opacity: 0;
}
70%,
85% {
opacity: 1;
}
95%,
100% {
opacity: 0;
}
}
@media (prefers-reduced-motion: reduce) {
.pulsar-manifest-waybill .row.r1,
.pulsar-manifest-waybill .row.r2,
.pulsar-manifest-waybill .row.r3,
.pulsar-manifest-waybill .barcode-ticks {
animation: none;
transform: none;
opacity: 1;
stroke-dashoffset: 0;
}
}