Bar Incrementer
CSSA segmented vertical bar meter fills sequentially from bottom to top, discharging a brief pulse from its peak before resetting to repeat the loading cycle.
- Tier
- CSS
- Dependencies
- None
- Duration
- 4 s, loops
- Categories
- Loaders and spinners
- Use cases
- Loading and waiting, Determinate progress
- Industries
- Energy and utilities, Cross-industry
- Style
- Data mark · light stroke
- Set
- meter
- Tags
- barsprogressgeometricpulse
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-bar-increment" data-pulsar="meter-bar-increment" viewBox="0 0 160 96"><rect width="44" height="64" x="58" y="16" stroke-width="1.5" opacity=".3" rx="3"></rect><rect width="32" height="8" x="64" y="66" fill="var(--pulsar-accent, currentColor)" stroke="none" class="meter-bar-seg meter-bar-1" rx="1.5"></rect><rect width="32" height="8" x="64" y="54" fill="var(--pulsar-accent, currentColor)" stroke="none" class="meter-bar-seg meter-bar-2" rx="1.5"></rect><rect width="32" height="8" x="64" y="42" fill="var(--pulsar-accent, currentColor)" stroke="none" class="meter-bar-seg meter-bar-3" rx="1.5"></rect><rect width="32" height="8" x="64" y="30" fill="var(--pulsar-accent, currentColor)" stroke="none" class="meter-bar-seg meter-bar-4" rx="1.5"></rect><rect width="32" height="8" x="64" y="18" fill="var(--pulsar-accent, currentColor)" stroke="none" class="meter-bar-seg meter-bar-5" rx="1.5"></rect><line x1="48" x2="54" y1="70" y2="70" stroke-width="1.5" opacity=".4"></line><line x1="48" x2="54" y1="46" y2="46" stroke-width="1.5" opacity=".4"></line><line x1="44" x2="54" y1="22" y2="22" stroke="var(--pulsar-accent, currentColor)" stroke-width="1.5"></line></svg>
animation.css
.pulsar-meter-bar-increment {
display: block;
overflow: visible;
}
.pulsar-meter-bar-increment .meter-bar-1 {
animation: meter-bar-increment-fill-anim 4000ms ease infinite;
animation-delay: 0ms;
}
.pulsar-meter-bar-increment .meter-bar-2 {
animation: meter-bar-increment-fill-anim 4000ms ease infinite;
animation-delay: -3500ms;
}
.pulsar-meter-bar-increment .meter-bar-3 {
animation: meter-bar-increment-fill-anim 4000ms ease infinite;
animation-delay: -3200ms;
}
.pulsar-meter-bar-increment .meter-bar-4 {
animation: meter-bar-increment-fill-anim 4000ms ease infinite;
animation-delay: -2900ms;
}
.pulsar-meter-bar-increment .meter-bar-5 {
animation: meter-bar-increment-fill-anim 4000ms ease infinite;
animation-delay: -2600ms;
}
@keyframes meter-bar-increment-fill-anim {
0%,
10% {
opacity: 0.1;
}
25%,
75% {
opacity: 0.95;
}
90%,
100% {
opacity: 0.1;
}
}
@media (prefers-reduced-motion: reduce) {
.pulsar-meter-bar-increment .meter-bar-1,
.pulsar-meter-bar-increment .meter-bar-2,
.pulsar-meter-bar-increment .meter-bar-3,
.pulsar-meter-bar-increment .meter-bar-4,
.pulsar-meter-bar-increment .meter-bar-5 {
animation: none;
opacity: 0.75;
}
}