Flow Telemetry
CSSA pipe silhouette with an integrated turbine impeller spins continuously as small flow particles pass through to indicate active data intake.
- Tier
- CSS
- Dependencies
- None
- Duration
- 4 s, loops
- Categories
- Loaders and spinners
- Use cases
- Loading and waiting, Sync and integration
- Industries
- Energy and utilities, Cross-industry
- Style
- Data mark · light stroke
- Set
- meter
- Tags
- rotatelinegeometricspinner
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-meter-flow-telemetry" data-pulsar="meter-flow-telemetry" viewBox="0 0 160 96"><line x1="16" x2="144" y1="32" y2="32" stroke-width="2" opacity=".3"></line><line x1="16" x2="144" y1="64" y2="64" stroke-width="2" opacity=".3"></line><circle cx="80" cy="48" r="22" stroke-width="1.5" opacity=".4"></circle><g class="meter-flow-rotor"><line x1="80" x2="80" y1="32" y2="64" stroke="var(--pulsar-accent, currentColor)" stroke-width="2"></line><line x1="64" x2="96" y1="48" y2="48" stroke="var(--pulsar-accent, currentColor)" stroke-width="2"></line><circle cx="80" cy="48" r="4" fill="currentColor" stroke-width="1.5"></circle></g><line x1="20" x2="140" y1="48" y2="48" stroke="var(--pulsar-accent, currentColor)" stroke-width="2" class="meter-flow-packet meter-flow-pkt1"></line></svg>
animation.css
.pulsar-meter-flow-telemetry {
display: block;
overflow: visible;
}
.pulsar-meter-flow-telemetry .meter-flow-rotor {
transform-origin: 80px 48px;
animation: meter-flow-telemetry-spin-anim 4000ms linear infinite;
}
.pulsar-meter-flow-telemetry .meter-flow-packet {
stroke-dasharray: 12 60;
animation: meter-flow-telemetry-flow-anim 4000ms linear infinite;
}
@keyframes meter-flow-telemetry-spin-anim {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
@keyframes meter-flow-telemetry-flow-anim {
0% {
stroke-dashoffset: 72;
}
100% {
stroke-dashoffset: -72;
}
}
@media (prefers-reduced-motion: reduce) {
.pulsar-meter-flow-telemetry .meter-flow-rotor,
.pulsar-meter-flow-telemetry .meter-flow-packet {
animation: none;
transform: none;
stroke-dashoffset: 0;
}
}