Customs Hold
CSSAn active consignment flow bar encounters an urgent interlock hold gate, freezing transfer with a flashing hold warning segment.
- Tier
- CSS
- Dependencies
- None
- Duration
- 4 s, loops
- Categories
- Data and progress
- Use cases
- Errors and warnings, Workflow and approvals
- Industries
- Logistics and supply chain
- Style
- Data mark · light stroke
- Set
- manifest
- Tags
- barspulseminimal
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-hold" data-pulsar="manifest-hold" viewBox="0 0 160 96"><rect width="96" height="20" x="32" y="38" stroke-width="1.5" opacity=".35" rx="3"></rect><rect width="40" height="12" x="36" y="42" fill="currentColor" class="flow-left" opacity=".2" rx="1"></rect><rect width="44" height="12" x="80" y="42" fill="var(--pulsar-accent, currentColor)" fill-opacity=".25" stroke="var(--pulsar-accent, currentColor)" class="hold-segment" rx="1"></rect><line x1="78" x2="78" y1="28" y2="68" stroke="var(--pulsar-accent, currentColor)" stroke-width="2" class="gate"></line></svg>
animation.css
.pulsar-manifest-hold {
display: block;
overflow: visible;
}
.pulsar-manifest-hold .gate {
animation: manifest-hold-gate 4000ms ease-in-out infinite;
}
.pulsar-manifest-hold .hold-segment {
animation: manifest-hold-segment 4000ms ease-in-out infinite;
}
.pulsar-manifest-hold .flow-left {
animation: manifest-hold-left 4000ms ease-in-out infinite;
}
@keyframes manifest-hold-gate {
0%,
20% {
transform: translateY(-16px);
opacity: 0.3;
}
35%,
80% {
transform: translateY(0);
opacity: 1;
}
95%,
100% {
transform: translateY(-16px);
opacity: 0.3;
}
}
@keyframes manifest-hold-segment {
0%,
30% {
opacity: 0.1;
stroke-dasharray: 2 2;
}
45%,
80% {
opacity: 1;
stroke-dasharray: none;
}
95%,
100% {
opacity: 0.1;
}
}
@keyframes manifest-hold-left {
0%,
100% {
opacity: 0.2;
}
50% {
opacity: 0.5;
}
}
@media (prefers-reduced-motion: reduce) {
.pulsar-manifest-hold .gate,
.pulsar-manifest-hold .hold-segment,
.pulsar-manifest-hold .flow-left {
animation: none;
transform: none;
opacity: 1;
stroke-dashoffset: 0;
}
}