Microgrid Loop
CSSA continuous ring network shares peer-to-peer power pulses across three distributed prosumer nodes without disconnecting from the local mesh.
- Tier
- CSS
- Dependencies
- None
- Duration
- 4.5 s, loops
- Categories
- Decorative and illustrative
- Use cases
- Security and trust, Ambient background
- Industries
- Real estate and property, Energy and utilities
- Style
- Duotone · light stroke
- Set
- grid
- Tags
- ringcirclepulseloop
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-microgrid-loop" data-pulsar="grid-microgrid-loop" viewBox="0 0 160 96"><path stroke-width="1.5" d="m80 20 44 52H36Z" class="grid-micro-track" opacity=".3"></path><circle cx="80" cy="20" r="6" stroke-width="1.5"></circle><circle cx="124" cy="72" r="6" stroke-width="1.5"></circle><circle cx="36" cy="72" r="6" stroke-width="1.5"></circle><circle cx="80" cy="20" r="2.5" fill="currentColor"></circle><circle cx="124" cy="72" r="2.5" fill="currentColor"></circle><circle cx="36" cy="72" r="2.5" fill="currentColor"></circle><path stroke="var(--pulsar-accent, currentColor)" stroke-width="2.5" d="m80 20 44 52H36Z" class="grid-micro-packet grid-micro-pkt-1"></path></svg>
animation.css
.pulsar-grid-microgrid-loop {
display: block;
overflow: visible;
}
.pulsar-grid-microgrid-loop .grid-micro-packet {
stroke-dasharray: 18 190;
animation: grid-microgrid-loop-microgrid-packet-anim 4500ms linear infinite;
}
@keyframes grid-microgrid-loop-microgrid-packet-anim {
0% {
stroke-dashoffset: 208;
}
100% {
stroke-dashoffset: 0;
}
}
@media (prefers-reduced-motion: reduce) {
.pulsar-grid-microgrid-loop .grid-micro-packet {
animation: none;
stroke-dashoffset: 0;
}
}