Intermodal Loading
CSSA horizontal intermodal rail track has container blocks descend sequentially onto flatcar platform segments.
- Tier
- CSS
- Dependencies
- None
- Duration
- 4 s, loops
- Categories
- Data and progress
- Use cases
- Workflow and approvals, Automation and rules
- Industries
- Logistics and supply chain
- Style
- Technical · light stroke
- Set
- yard
- Tags
- linegeometricminimal
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-train-load" data-pulsar="yard-train-load" viewBox="0 0 160 96"><line x1="20" x2="140" y1="68" y2="68" stroke-width="2" opacity=".4"></line><line x1="20" x2="140" y1="72" y2="72" stroke-dasharray="3 3" opacity=".25"></line><g class="flatcars"><rect width="38" height="6" x="36" y="60" stroke-width="1.5" opacity=".6" rx="1"></rect><rect width="38" height="6" x="84" y="60" stroke-width="1.5" opacity=".6" rx="1"></rect></g><rect width="30" height="14" x="40" y="44" fill="var(--pulsar-accent, currentColor)" fill-opacity=".15" stroke="var(--pulsar-accent, currentColor)" stroke-width="1.5" class="load l1" rx="1.5"></rect><rect width="30" height="14" x="88" y="44" fill="currentColor" fill-opacity=".1" stroke-width="1.5" class="load l2" rx="1.5"></rect></svg>
animation.css
.pulsar-yard-train-load {
display: block;
overflow: visible;
}
.pulsar-yard-train-load .load.l1 {
animation: yard-train-load-l1 4000ms ease-in-out infinite;
}
.pulsar-yard-train-load .load.l2 {
animation: yard-train-load-l2 4000ms ease-in-out infinite;
}
.pulsar-yard-train-load .flatcars {
animation: yard-train-load-train 4000ms ease-in-out infinite;
}
@keyframes yard-train-load-l1 {
0% {
transform: translateY(-16px);
opacity: 0;
}
25%,
75% {
transform: translateY(0);
opacity: 1;
}
90%,
100% {
transform: translateY(0);
opacity: 0;
}
}
@keyframes yard-train-load-l2 {
0%,
25% {
transform: translateY(-16px);
opacity: 0;
}
45%,
75% {
transform: translateY(0);
opacity: 1;
}
90%,
100% {
transform: translateY(0);
opacity: 0;
}
}
@keyframes yard-train-load-train {
0%,
75% {
transform: translateX(0);
}
90%,
100% {
transform: translateX(18px);
}
}
@media (prefers-reduced-motion: reduce) {
.pulsar-yard-train-load .load.l1,
.pulsar-yard-train-load .load.l2,
.pulsar-yard-train-load .flatcars {
animation: none;
transform: none;
opacity: 1;
stroke-dashoffset: 0;
}
}