Priority Shipping
CSSAn expedited shipping tier indicator steps steadily upward through service levels to highlight prioritized transit.
- Tier
- CSS
- Dependencies
- None
- Duration
- 4 s, loops
- Categories
- Data and progress
- Use cases
- Determinate progress, Workflow and approvals
- Industries
- Logistics and supply chain
- Style
- Data mark · light stroke
- Set
- manifest
- Tags
- barsprogressminimal
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-priority" data-pulsar="manifest-priority" viewBox="0 0 160 96"><rect width="88" height="48" x="36" y="24" stroke-width="1.5" opacity=".35" rx="3"></rect><rect width="72" height="8" x="44" y="58" fill="currentColor" fill-opacity=".1" stroke-width="1.5" class="tier t1" rx="2"></rect><rect width="72" height="8" x="44" y="44" fill="currentColor" fill-opacity=".15" stroke-width="1.5" class="tier t2" rx="2"></rect><rect width="72" height="8" x="44" y="30" fill="var(--pulsar-accent, currentColor)" fill-opacity=".25" stroke="var(--pulsar-accent, currentColor)" stroke-width="1.5" class="tier t3" rx="2"></rect><path stroke="var(--pulsar-accent, currentColor)" stroke-width="1.5" d="m120 34 3-2-3-2" class="chevron"></path></svg>
animation.css
.pulsar-manifest-priority {
display: block;
overflow: visible;
}
.pulsar-manifest-priority .tier.t1 {
animation: manifest-priority-t1 4000ms ease-in-out infinite;
}
.pulsar-manifest-priority .tier.t2 {
animation: manifest-priority-t2 4000ms ease-in-out infinite;
}
.pulsar-manifest-priority .tier.t3 {
animation: manifest-priority-t3 4000ms ease-in-out infinite;
}
.pulsar-manifest-priority .chevron {
animation: manifest-priority-chev 4000ms ease-in-out infinite;
}
@keyframes manifest-priority-t1 {
0%,
20% {
opacity: 0.8;
}
35%,
100% {
opacity: 0.4;
}
}
@keyframes manifest-priority-t2 {
0%,
25% {
opacity: 0.3;
}
35%,
55% {
opacity: 0.8;
}
65%,
100% {
opacity: 0.4;
}
}
@keyframes manifest-priority-t3 {
0%,
50% {
opacity: 0.3;
transform: scaleX(0.95);
}
65%,
85% {
opacity: 1;
transform: scaleX(1);
}
95%,
100% {
opacity: 0.3;
transform: scaleX(0.95);
}
}
@keyframes manifest-priority-chev {
0%,
55% {
opacity: 0.2;
transform: translateX(-4px);
}
65%,
85% {
opacity: 1;
transform: translateX(0);
}
95%,
100% {
opacity: 0.2;
transform: translateX(-4px);
}
}
@media (prefers-reduced-motion: reduce) {
.pulsar-manifest-priority .tier.t1,
.pulsar-manifest-priority .tier.t2,
.pulsar-manifest-priority .tier.t3,
.pulsar-manifest-priority .chevron {
animation: none;
transform: none;
opacity: 1;
stroke-dashoffset: 0;
}
}