Leak Detector Meter
CSSA circular pressure gauge with a sensitive needle flutters rhythmically around a threshold tick to indicate active diagnostic scan processing.
- Tier
- CSS
- Dependencies
- None
- Duration
- 4 s, loops
- Categories
- Loaders and spinners
- Use cases
- Loading and waiting, Search and filtering
- Industries
- Energy and utilities, Cross-industry
- Style
- Data mark · light stroke
- Set
- meter
- Tags
- ringcirclelinegeometric
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-leak-detector" data-pulsar="meter-leak-detector" viewBox="0 0 160 96"><circle cx="80" cy="48" r="34" stroke-width="1.5" opacity=".3"></circle><path stroke-width="1.5" d="M56 70a30 30 0 1 1 48 0" opacity=".2"></path><line x1="98" x2="104" y1="30" y2="24" stroke="var(--pulsar-accent, currentColor)" stroke-width="2"></line><line x1="80" x2="80" y1="18" y2="24" stroke-width="1.5" opacity=".3"></line><line x1="62" x2="56" y1="30" y2="24" stroke-width="1.5" opacity=".3"></line><circle cx="80" cy="48" r="4" fill="currentColor" stroke-width="1.5"></circle><g class="meter-leak-needle"><line x1="80" x2="80" y1="48" y2="22" stroke="var(--pulsar-accent, currentColor)" stroke-width="2"></line><circle cx="80" cy="22" r="2" fill="var(--pulsar-accent, currentColor)"></circle></g></svg>
animation.css
.pulsar-meter-leak-detector {
display: block;
overflow: visible;
}
.pulsar-meter-leak-detector .meter-leak-needle {
transform-origin: 80px 48px;
animation: meter-leak-detector-flutter-anim 4000ms ease-in-out infinite;
}
@keyframes meter-leak-detector-flutter-anim {
0%,
100% {
transform: rotate(20deg);
}
20% {
transform: rotate(38deg);
}
35% {
transform: rotate(26deg);
}
55% {
transform: rotate(44deg);
}
75% {
transform: rotate(22deg);
}
85% {
transform: rotate(36deg);
}
}
@media (prefers-reduced-motion: reduce) {
.pulsar-meter-leak-detector .meter-leak-needle {
animation: none;
transform: rotate(30deg);
}
}