Pulse Wave Meter
CSSA horizontal oscilloscopic line draws a steady pulse wave that sweeps continuously from left to right across a fine grid background.
- Tier
- CSS
- Dependencies
- None
- Duration
- 4 s, loops
- Categories
- Loaders and spinners
- Use cases
- Loading and waiting, Dashboards and reporting
- Industries
- Energy and utilities, Cross-industry
- Style
- Data mark · light stroke
- Set
- meter
- Tags
- wavegridlinepulse
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-pulse-wave" data-pulsar="meter-pulse-wave" viewBox="0 0 160 96"><rect width="128" height="64" x="16" y="16" stroke-width="1.5" opacity=".3" rx="3"></rect><line x1="16" x2="144" y1="48" y2="48" stroke-dasharray="2 4" opacity=".2"></line><line x1="80" x2="80" y1="16" y2="80" stroke-dasharray="2 4" opacity=".2"></line><path stroke-width="1.5" d="M20 48h32l8-16 8 32 8-38 8 30 8-8h48" opacity=".2"></path><path stroke="var(--pulsar-accent, currentColor)" stroke-width="2" d="M20 48h32l8-16 8 32 8-38 8 30 8-8h48" class="meter-wave-beam"></path></svg>
animation.css
.pulsar-meter-pulse-wave {
display: block;
overflow: visible;
}
.pulsar-meter-pulse-wave .meter-wave-beam {
stroke-dasharray: 24 160;
animation: meter-pulse-wave-sweep-anim 4000ms linear infinite;
}
@keyframes meter-pulse-wave-sweep-anim {
0% {
stroke-dashoffset: 184;
opacity: 0.2;
}
35%,
65% {
opacity: 1;
}
100% {
stroke-dashoffset: -184;
opacity: 0.2;
}
}
@media (prefers-reduced-motion: reduce) {
.pulsar-meter-pulse-wave .meter-wave-beam {
animation: none;
stroke-dashoffset: 0;
opacity: 0.8;
}
}