Demand Indicator
CSSA curved dial segment has an indicator needle that sweeps back and forth smoothly between low and high limits during data synchronization.
- Tier
- CSS
- Dependencies
- None
- Duration
- 4.2 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
- ringminimallinegeometric
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-demand-indicator" data-pulsar="meter-demand-indicator" viewBox="0 0 160 96"><path stroke-width="2" d="M46 72a40 40 0 0 1 68 0" opacity=".3"></path><line x1="46" x2="40" y1="72" y2="76" stroke-width="2" opacity=".4"></line><line x1="114" x2="120" y1="72" y2="76" stroke="var(--pulsar-accent, currentColor)" stroke-width="2"></line><line x1="80" x2="80" y1="32" y2="26" stroke-dasharray="2 2" stroke-width="1.5" opacity=".4"></line><circle cx="80" cy="72" r="5" fill="currentColor" stroke-width="1.5"></circle><g class="meter-demand-needle"><line x1="80" x2="80" y1="72" y2="34" stroke="var(--pulsar-accent, currentColor)" stroke-width="2"></line><circle cx="80" cy="34" r="2.5" fill="var(--pulsar-accent, currentColor)"></circle></g></svg>
animation.css
.pulsar-meter-demand-indicator {
display: block;
overflow: visible;
}
.pulsar-meter-demand-indicator .meter-demand-needle {
transform-origin: 80px 72px;
animation: meter-demand-indicator-sweep-anim 4200ms ease-in-out infinite;
}
@keyframes meter-demand-indicator-sweep-anim {
0%,
100% {
transform: rotate(-45deg);
}
50% {
transform: rotate(45deg);
}
}
@media (prefers-reduced-motion: reduce) {
.pulsar-meter-demand-indicator .meter-demand-needle {
animation: none;
transform: rotate(0deg);
}
}