Bay Allocation
CSSA grid of four terminal storage bay slots has a precision drafting crosshair focus over an allocated bay, filling it with diagonal hatch lines.
- 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
- gridgeometricminimal
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-bay-allocation" data-pulsar="yard-bay-allocation" viewBox="0 0 160 96"><rect width="38" height="22" x="36" y="24" stroke-width="1.5" opacity=".3" rx="2"></rect><rect width="38" height="22" x="86" y="24" stroke-width="1.5" opacity=".3" rx="2"></rect><rect width="38" height="22" x="36" y="50" stroke-width="1.5" opacity=".3" rx="2"></rect><g class="bay-target"><rect width="38" height="22" x="86" y="50" fill="var(--pulsar-accent, currentColor)" fill-opacity=".1" stroke="var(--pulsar-accent, currentColor)" stroke-width="1.5" rx="2"></rect><line x1="90" x2="104" y1="68" y2="54" stroke="var(--pulsar-accent, currentColor)" stroke-width="1.2" class="hatch"></line><line x1="98" x2="114" y1="70" y2="54" stroke="var(--pulsar-accent, currentColor)" stroke-width="1.2" class="hatch"></line><line x1="108" x2="120" y1="70" y2="58" stroke="var(--pulsar-accent, currentColor)" stroke-width="1.2" class="hatch"></line></g><g class="crosshair"><line x1="105" x2="105" y1="44" y2="78" stroke="var(--pulsar-accent, currentColor)" stroke-dasharray="2 2"></line><line x1="80" x2="130" y1="61" y2="61" stroke="var(--pulsar-accent, currentColor)" stroke-dasharray="2 2"></line><circle cx="105" cy="61" r="5" stroke="var(--pulsar-accent, currentColor)" stroke-width="1.5"></circle></g></svg>
animation.css
.pulsar-yard-bay-allocation {
display: block;
overflow: visible;
}
.pulsar-yard-bay-allocation .crosshair {
animation: yard-bay-allocation-cross 4000ms ease-in-out infinite;
}
.pulsar-yard-bay-allocation .bay-target .hatch {
animation: yard-bay-allocation-hatch 4000ms ease-in-out infinite;
}
@keyframes yard-bay-allocation-cross {
0%,
15% {
transform: scale(0.85);
opacity: 0.3;
}
35%,
75% {
transform: scale(1.1);
opacity: 1;
}
90%,
100% {
transform: scale(0.85);
opacity: 0.3;
}
}
@keyframes yard-bay-allocation-hatch {
0%,
25% {
opacity: 0;
}
45%,
80% {
opacity: 1;
}
95%,
100% {
opacity: 0;
}
}
@media (prefers-reduced-motion: reduce) {
.pulsar-yard-bay-allocation .crosshair,
.pulsar-yard-bay-allocation .bay-target .hatch {
animation: none;
transform: none;
opacity: 1;
stroke-dashoffset: 0;
}
}