Chassis Pool
CSSA vertical queue stack of horizontal chassis trailer rules has the top unit dispatch outward into the marshalling lane.
- Tier
- CSS
- Dependencies
- None
- Duration
- 4 s, loops
- Categories
- Data and progress
- Use cases
- Dashboards and reporting, Workflow and approvals
- Industries
- Logistics and supply chain
- Style
- Technical · light stroke
- Set
- yard
- Tags
- barsminimalline
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-yard-chassis-pool" data-pulsar="yard-chassis-pool" viewBox="0 0 160 96"><line x1="32" x2="32" y1="28" y2="70" stroke-width="1.5" opacity=".35"></line><rect width="52" height="8" x="36" y="58" stroke-width="1.5" opacity=".4" rx="1.5"></rect><rect width="52" height="8" x="36" y="44" stroke-width="1.5" opacity=".6" rx="1.5"></rect><rect width="52" height="8" x="36" y="30" fill="var(--pulsar-accent, currentColor)" fill-opacity=".2" stroke="var(--pulsar-accent, currentColor)" stroke-width="1.5" class="top-chassis" rx="1.5"></rect><line x1="96" x2="132" y1="34" y2="34" stroke="var(--pulsar-accent, currentColor)" stroke-dasharray="2 3" opacity=".5"></line></svg>
animation.css
.pulsar-yard-chassis-pool {
display: block;
overflow: visible;
}
.pulsar-yard-chassis-pool .top-chassis {
animation: yard-chassis-pool-dispatch 4000ms ease-in-out infinite;
}
@keyframes yard-chassis-pool-dispatch {
0% {
transform: translateX(0);
opacity: 0.8;
}
35%,
75% {
transform: translateX(40px);
opacity: 1;
}
90%,
100% {
transform: translateX(40px);
opacity: 0;
}
}
@media (prefers-reduced-motion: reduce) {
.pulsar-yard-chassis-pool .top-chassis {
animation: none;
transform: none;
opacity: 1;
stroke-dashoffset: 0;
}
}