Reefer Monitoring
CSSA refrigerated container outline displays an active thermal regulation telemetry wave across calibrated temperature ticks.
- Tier
- CSS
- Dependencies
- None
- Duration
- 4 s, loops
- Categories
- Data and progress
- Use cases
- Dashboards and reporting, Automation and rules
- Industries
- Logistics and supply chain
- Style
- Technical · light stroke
- Set
- yard
- Tags
- wavelineminimal
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-reefer-monitoring" data-pulsar="yard-reefer-monitoring" viewBox="0 0 160 96"><rect width="88" height="40" x="36" y="28" stroke-width="1.5" opacity=".35" rx="3"></rect><line x1="42" x2="48" y1="36" y2="36" stroke-width="1.2" opacity=".5"></line><line x1="42" x2="50" y1="48" y2="48" stroke="var(--pulsar-accent, currentColor)" stroke-width="1.5"></line><line x1="42" x2="48" y1="60" y2="60" stroke-width="1.2" opacity=".5"></line><path stroke="var(--pulsar-accent, currentColor)" stroke-width="1.5" d="M56 48q12-10 24 0t24 0 14 0" class="temp-wave"></path></svg>
animation.css
.pulsar-yard-reefer-monitoring {
display: block;
overflow: visible;
}
.pulsar-yard-reefer-monitoring .temp-wave {
animation: yard-reefer-monitoring-wave 4000ms ease-in-out infinite;
}
@keyframes yard-reefer-monitoring-wave {
0%,
100% {
transform: scaleY(1);
opacity: 0.7;
}
50% {
transform: scaleY(1.3);
transform-origin: 87px 48px;
opacity: 1;
}
}
@media (prefers-reduced-motion: reduce) {
.pulsar-yard-reefer-monitoring .temp-wave {
animation: none;
transform: none;
opacity: 1;
stroke-dashoffset: 0;
}
}