Gate Flow
CSSTwo terminal gate portal lines open outward to allow queued consignment tokens to pass smoothly through access control.
- 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
- 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-gate-flow" data-pulsar="yard-gate-flow" viewBox="0 0 160 96"><line x1="24" x2="136" y1="48" y2="48" stroke-dasharray="2 3" opacity=".25"></line><line x1="80" x2="80" y1="24" y2="44" stroke="var(--pulsar-accent, currentColor)" stroke-width="2" class="gate top"></line><line x1="80" x2="80" y1="52" y2="72" stroke="var(--pulsar-accent, currentColor)" stroke-width="2" class="gate bottom"></line><rect width="10" height="10" x="36" y="43" fill="var(--pulsar-accent, currentColor)" fill-opacity=".2" stroke="var(--pulsar-accent, currentColor)" stroke-width="1.5" class="car c1" rx="1.5"></rect><rect width="10" height="10" x="56" y="43" fill="currentColor" fill-opacity=".1" stroke-width="1.5" class="car c2" rx="1.5"></rect></svg>
animation.css
.pulsar-yard-gate-flow {
display: block;
overflow: visible;
}
.pulsar-yard-gate-flow .gate.top {
animation: yard-gate-flow-gtop 4000ms ease-in-out infinite;
}
.pulsar-yard-gate-flow .gate.bottom {
animation: yard-gate-flow-gbot 4000ms ease-in-out infinite;
}
.pulsar-yard-gate-flow .car.c1 {
animation: yard-gate-flow-c1 4000ms ease-in-out infinite;
}
.pulsar-yard-gate-flow .car.c2 {
animation: yard-gate-flow-c2 4000ms ease-in-out infinite;
}
@keyframes yard-gate-flow-gtop {
0%,
20% {
transform: translateY(0);
}
35%,
75% {
transform: translateY(-8px);
}
90%,
100% {
transform: translateY(0);
}
}
@keyframes yard-gate-flow-gbot {
0%,
20% {
transform: translateY(0);
}
35%,
75% {
transform: translateY(8px);
}
90%,
100% {
transform: translateY(0);
}
}
@keyframes yard-gate-flow-c1 {
0% {
transform: translateX(0);
opacity: 0.8;
}
50%,
80% {
transform: translateX(64px);
opacity: 1;
}
100% {
transform: translateX(64px);
opacity: 0;
}
}
@keyframes yard-gate-flow-c2 {
0% {
transform: translateX(0);
opacity: 0.6;
}
50%,
80% {
transform: translateX(44px);
opacity: 0.9;
}
100% {
transform: translateX(44px);
opacity: 0;
}
}
@media (prefers-reduced-motion: reduce) {
.pulsar-yard-gate-flow .gate.top,
.pulsar-yard-gate-flow .gate.bottom,
.pulsar-yard-gate-flow .car.c1,
.pulsar-yard-gate-flow .car.c2 {
animation: none;
transform: none;
opacity: 1;
stroke-dashoffset: 0;
}
}