HVDC Tie-Line Flow
CSSAn HVDC converter station ties two asynchronous power regions together, converting and transferring balanced high-voltage direct current.
- Tier
- CSS
- Dependencies
- None
- Duration
- 4.4 s, loops
- Categories
- Decorative and illustrative
- Use cases
- Sync and integration, Ambient background
- Industries
- Manufacturing and industrial, Energy and utilities
- Style
- Duotone · light stroke
- Set
- grid
- Tags
- linegridgeometricpulse
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-grid-thermal-flow" data-pulsar="grid-thermal-flow" viewBox="0 0 160 96"><path stroke-width="1.5" d="M16 36q10-12 20 0t20 0" opacity=".3"></path><path stroke-width="1.5" d="M16 60q10-12 20 0t20 0" opacity=".3"></path><rect width="16" height="40" x="56" y="28" stroke-width="1.5" rx="2"></rect><line x1="56" x2="72" y1="28" y2="68" opacity=".4"></line><rect width="16" height="40" x="88" y="28" stroke-width="1.5" rx="2"></rect><line x1="88" x2="104" y1="28" y2="68" opacity=".4"></line><line x1="72" x2="88" y1="40" y2="40" stroke-width="2" opacity=".4"></line><line x1="72" x2="88" y1="56" y2="56" stroke-width="2" opacity=".4"></line><line x1="72" x2="88" y1="40" y2="40" stroke="var(--pulsar-accent, currentColor)" stroke-width="2" class="grid-hvdc-pulse grid-hvdc-p1"></line><line x1="88" x2="72" y1="56" y2="56" stroke="var(--pulsar-accent, currentColor)" stroke-width="2" class="grid-hvdc-pulse grid-hvdc-p2"></line><path stroke-width="1.5" d="M104 36q10-12 20 0t20 0" opacity=".3"></path><path stroke-width="1.5" d="M104 60q10-12 20 0t20 0" opacity=".3"></path></svg>
animation.css
.pulsar-grid-thermal-flow {
display: block;
overflow: visible;
}
.pulsar-grid-thermal-flow .grid-hvdc-p1 {
stroke-dasharray: 6 10;
animation: grid-thermal-flow-hvdc-p1-anim 4400ms linear infinite;
}
.pulsar-grid-thermal-flow .grid-hvdc-p2 {
stroke-dasharray: 6 10;
animation: grid-thermal-flow-hvdc-p2-anim 4400ms linear infinite;
}
@keyframes grid-thermal-flow-hvdc-p1-anim {
0% {
stroke-dashoffset: 16;
}
100% {
stroke-dashoffset: 0;
}
}
@keyframes grid-thermal-flow-hvdc-p2-anim {
0% {
stroke-dashoffset: 0;
}
100% {
stroke-dashoffset: 16;
}
}
@media (prefers-reduced-motion: reduce) {
.pulsar-grid-thermal-flow .grid-hvdc-p1,
.pulsar-grid-thermal-flow .grid-hvdc-p2 {
animation: none;
stroke-dashoffset: 0;
}
}