HVAC
CSSAn architectural duct run routes undulating climate airflow telemetry through mechanical dampers.
- Tier
- CSS
- Dependencies
- None
- Duration
- 4 s, loops
- Categories
- Icons and micro-interactions
- Use cases
- Determinate progress, Workflow and approvals
- Industries
- Real estate and property, Cross-industry
- Style
- Technical · light stroke
- Set
- floorplate
- Tags
- wavelineminimalloop
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" aria-hidden="true" class="pulsar pulsar-floorplate-hvac" data-pulsar="floorplate-hvac" viewBox="0 0 160 96"><rect width="104" height="28" x="28" y="34" stroke="currentColor" stroke-width="1.2" class="duct" opacity=".3" rx="1"></rect><line x1="44" x2="44" y1="34" y2="62" stroke="currentColor" stroke-dasharray="2 2" class="damper d1" opacity=".4"></line><line x1="116" x2="116" y1="34" y2="62" stroke="currentColor" stroke-dasharray="2 2" class="damper d2" opacity=".4"></line><path stroke="var(--pulsar-accent, currentColor)" stroke-linecap="round" stroke-width="1.5" d="M32 48q18-8 36 0t36 0 24 0" class="airflow"></path></svg>
animation.css
.pulsar-floorplate-hvac {
display: block;
width: 100%;
height: 100%;
}
.pulsar-floorplate-hvac .airflow {
stroke-dasharray: 100;
animation: floorplate-hvac-flow 4s ease-in-out infinite;
}
.pulsar-floorplate-hvac .damper.d1 {
animation: floorplate-hvac-damper 4s ease-in-out infinite;
}
.pulsar-floorplate-hvac .damper.d2 {
animation: floorplate-hvac-damper 4s ease-in-out infinite -2s;
}
@keyframes floorplate-hvac-flow {
0% {
stroke-dashoffset: 100;
opacity: 0.2;
}
50% {
stroke-dashoffset: 0;
opacity: 1;
}
100% {
stroke-dashoffset: -100;
opacity: 0.2;
}
}
@keyframes floorplate-hvac-damper {
0%,
100% {
opacity: 0.3;
}
50% {
opacity: 0.9;
}
}
@media (prefers-reduced-motion: reduce) {
.pulsar-floorplate-hvac .airflow,
.pulsar-floorplate-hvac .damper.d1,
.pulsar-floorplate-hvac .damper.d2 {
animation: none;
stroke-dashoffset: 0;
opacity: 1;
}
}