Tally Progress
CSSFour vertical tally marks draw sequentially followed by a diagonal gate stroke to complete a five-count logistics lot.
- Tier
- CSS
- Dependencies
- None
- Duration
- 4 s, loops
- Categories
- Data and progress
- Use cases
- Determinate progress, Dashboards and reporting
- Industries
- Logistics and supply chain, Cross-industry
- Style
- Data mark · light stroke
- Set
- manifest
- Tags
- barsprogresscounter
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-manifest-tally" data-pulsar="manifest-tally" viewBox="0 0 160 96"><rect width="72" height="48" x="44" y="24" stroke-width="1.5" opacity=".3" rx="4"></rect><line x1="58" x2="58" y1="34" y2="62" stroke="var(--pulsar-accent, currentColor)" stroke-width="2.5" class="tally t1"></line><line x1="72" x2="72" y1="34" y2="62" stroke="var(--pulsar-accent, currentColor)" stroke-width="2.5" class="tally t2"></line><line x1="86" x2="86" y1="34" y2="62" stroke="var(--pulsar-accent, currentColor)" stroke-width="2.5" class="tally t3"></line><line x1="100" x2="100" y1="34" y2="62" stroke="var(--pulsar-accent, currentColor)" stroke-width="2.5" class="tally t4"></line><line x1="52" x2="106" y1="64" y2="32" stroke="var(--pulsar-accent, currentColor)" stroke-width="2.5" class="tally gate"></line></svg>
animation.css
.pulsar-manifest-tally {
display: block;
overflow: visible;
}
.pulsar-manifest-tally .tally.t1 {
animation: manifest-tally-t1 4000ms ease-in-out infinite;
}
.pulsar-manifest-tally .tally.t2 {
animation: manifest-tally-t2 4000ms ease-in-out infinite;
}
.pulsar-manifest-tally .tally.t3 {
animation: manifest-tally-t3 4000ms ease-in-out infinite;
}
.pulsar-manifest-tally .tally.t4 {
animation: manifest-tally-t4 4000ms ease-in-out infinite;
}
.pulsar-manifest-tally .tally.gate {
stroke-dasharray: 65;
stroke-dashoffset: 65;
animation: manifest-tally-gate 4000ms ease-in-out infinite;
}
@keyframes manifest-tally-t1 {
0%,
10% {
opacity: 0;
}
18%,
85% {
opacity: 1;
}
95%,
100% {
opacity: 0;
}
}
@keyframes manifest-tally-t2 {
0%,
20% {
opacity: 0;
}
28%,
85% {
opacity: 1;
}
95%,
100% {
opacity: 0;
}
}
@keyframes manifest-tally-t3 {
0%,
30% {
opacity: 0;
}
38%,
85% {
opacity: 1;
}
95%,
100% {
opacity: 0;
}
}
@keyframes manifest-tally-t4 {
0%,
40% {
opacity: 0;
}
48%,
85% {
opacity: 1;
}
95%,
100% {
opacity: 0;
}
}
@keyframes manifest-tally-gate {
0%,
55% {
stroke-dashoffset: 65;
opacity: 0;
}
65%,
85% {
stroke-dashoffset: 0;
opacity: 1;
}
95%,
100% {
stroke-dashoffset: 65;
opacity: 0;
}
}
@media (prefers-reduced-motion: reduce) {
.pulsar-manifest-tally .tally.t1,
.pulsar-manifest-tally .tally.t2,
.pulsar-manifest-tally .tally.t3,
.pulsar-manifest-tally .tally.t4,
.pulsar-manifest-tally .tally.gate {
animation: none;
transform: none;
opacity: 1;
stroke-dashoffset: 0;
}
}