Container Dwell Time
CSSA container slot on a technical grid progressively accumulates diagonal hatch lines to indicate extended storage duration.
- Tier
- CSS
- Dependencies
- None
- Duration
- 4 s, loops
- Categories
- Data and progress
- Use cases
- Dashboards and reporting, Scheduling and time
- Industries
- Logistics and supply chain
- Style
- Technical · light stroke
- Set
- yard
- Tags
- gridbarsprogress
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-dwell-time" data-pulsar="yard-dwell-time" viewBox="0 0 160 96"><rect width="60" height="40" x="50" y="28" stroke-width="1.5" opacity=".35" rx="3"></rect><line x1="50" x2="110" y1="20" y2="20" stroke-dasharray="2 2" opacity=".25"></line><line x1="56" x2="72" y1="62" y2="34" stroke="var(--pulsar-accent, currentColor)" stroke-width="1.5" class="hatch h1"></line><line x1="72" x2="88" y1="62" y2="34" stroke="var(--pulsar-accent, currentColor)" stroke-width="1.5" class="hatch h2"></line><line x1="88" x2="104" y1="62" y2="34" stroke="var(--pulsar-accent, currentColor)" stroke-width="1.5" class="hatch h3"></line><circle cx="102" cy="34" r="3" fill="var(--pulsar-accent, currentColor)" class="alert-dot"></circle></svg>
animation.css
.pulsar-yard-dwell-time {
display: block;
overflow: visible;
}
.pulsar-yard-dwell-time .hatch.h1 {
animation: yard-dwell-time-h1 4000ms ease-in-out infinite;
}
.pulsar-yard-dwell-time .hatch.h2 {
animation: yard-dwell-time-h2 4000ms ease-in-out infinite;
}
.pulsar-yard-dwell-time .hatch.h3 {
animation: yard-dwell-time-h3 4000ms ease-in-out infinite;
}
.pulsar-yard-dwell-time .alert-dot {
animation: yard-dwell-time-dot 4000ms ease-in-out infinite;
}
@keyframes yard-dwell-time-h1 {
0%,
15% {
opacity: 0.1;
}
25%,
85% {
opacity: 1;
}
95%,
100% {
opacity: 0.1;
}
}
@keyframes yard-dwell-time-h2 {
0%,
30% {
opacity: 0.1;
}
40%,
85% {
opacity: 1;
}
95%,
100% {
opacity: 0.1;
}
}
@keyframes yard-dwell-time-h3 {
0%,
45% {
opacity: 0.1;
}
55%,
85% {
opacity: 1;
}
95%,
100% {
opacity: 0.1;
}
}
@keyframes yard-dwell-time-dot {
0%,
55% {
opacity: 0;
transform: scale(0.6);
}
65%,
85% {
opacity: 1;
transform: scale(1.2);
}
95%,
100% {
opacity: 0;
transform: scale(0.6);
}
}
@media (prefers-reduced-motion: reduce) {
.pulsar-yard-dwell-time .hatch.h1,
.pulsar-yard-dwell-time .hatch.h2,
.pulsar-yard-dwell-time .hatch.h3,
.pulsar-yard-dwell-time .alert-dot {
animation: none;
transform: none;
opacity: 1;
stroke-dashoffset: 0;
}
}