Consignment Split
CSSA single consignment block splits cleanly along a vertical division and dispatches along independent branch tracking lines.
- Tier
- CSS
- Dependencies
- None
- Duration
- 4 s, loops
- Categories
- Data and progress
- Use cases
- Determinate progress, Workflow and approvals
- Industries
- Logistics and supply chain, Cross-industry
- Style
- Data mark · light stroke
- Set
- manifest
- Tags
- geometricprogressline
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-split" data-pulsar="manifest-split" viewBox="0 0 160 96"><line x1="24" x2="64" y1="48" y2="48" stroke-width="1.5" opacity=".35"></line><path stroke-width="1.5" d="M64 48c14 0 20-14 36-14h36" opacity=".35"></path><path stroke-width="1.5" d="M64 48c14 0 20 14 36 14h36" opacity=".35"></path><rect width="18" height="18" x="42" y="39" fill="var(--pulsar-accent, currentColor)" fill-opacity=".15" stroke="var(--pulsar-accent, currentColor)" stroke-width="1.5" class="box-top" rx="2"></rect><rect width="18" height="18" x="42" y="39" fill="currentColor" fill-opacity=".1" stroke-width="1.5" class="box-bottom" rx="2"></rect></svg>
animation.css
.pulsar-manifest-split {
display: block;
overflow: visible;
}
.pulsar-manifest-split .box-top {
animation: manifest-split-top 4000ms ease-in-out infinite;
}
.pulsar-manifest-split .box-bottom {
animation: manifest-split-bottom 4000ms ease-in-out infinite;
}
@keyframes manifest-split-top {
0% {
transform: translate(0, 0);
opacity: 0.8;
}
25% {
transform: translate(16px, 0);
opacity: 1;
}
55%,
80% {
transform: translate(62px, -14px);
opacity: 1;
}
95%,
100% {
transform: translate(0, 0);
opacity: 0.8;
}
}
@keyframes manifest-split-bottom {
0% {
transform: translate(0, 0);
opacity: 0.8;
}
25% {
transform: translate(16px, 0);
opacity: 1;
}
55%,
80% {
transform: translate(62px, 14px);
opacity: 1;
}
95%,
100% {
transform: translate(0, 0);
opacity: 0.8;
}
}
@media (prefers-reduced-motion: reduce) {
.pulsar-manifest-split .box-top,
.pulsar-manifest-split .box-bottom {
animation: none;
transform: none;
opacity: 1;
stroke-dashoffset: 0;
}
}