Priority sorting
CSSThree stacked priority indicators adjust vertical hierarchy as critical defect items elevate to the top.
- Tier
- CSS
- Dependencies
- None
- Duration
- 4 s, loops
- Categories
- Data and progress
- Use cases
- Dashboards and reporting, Workflow and approvals
- Industries
- Construction and built environment, Cross-industry
- Style
- Minimal line · light stroke
- Set
- punchlist
- Tags
- barsminimalloopgeometric
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" aria-hidden="true" class="pulsar pulsar-punchlist-priority" data-pulsar="punchlist-priority" viewBox="0 0 160 96"><line x1="40" x2="80" y1="32" y2="32" stroke="currentColor" stroke-linecap="round" stroke-width="2.5" class="bar b1"></line><line x1="40" x2="120" y1="48" y2="48" stroke="var(--pulsar-accent, currentColor)" stroke-linecap="round" stroke-width="2.5" class="bar b2"></line><line x1="40" x2="100" y1="64" y2="64" stroke="currentColor" stroke-linecap="round" stroke-width="2.5" class="bar b3"></line></svg>
animation.css
.pulsar-punchlist-priority {
display: block;
width: 100%;
height: 100%;
}
.pulsar-punchlist-priority .bar.b1 {
animation: punchlist-priority-swap1 4s ease-in-out infinite;
}
.pulsar-punchlist-priority .bar.b2 {
animation: punchlist-priority-swap2 4s ease-in-out infinite;
}
.pulsar-punchlist-priority .bar.b3 {
animation: punchlist-priority-b3 4s ease-in-out infinite;
}
@keyframes punchlist-priority-swap1 {
0%,
100% {
transform: translateY(0);
opacity: 0.4;
}
50% {
transform: translateY(16px);
opacity: 0.4;
}
}
@keyframes punchlist-priority-swap2 {
0%,
100% {
transform: translateY(0);
opacity: 1;
}
50% {
transform: translateY(-16px);
opacity: 1;
}
}
@keyframes punchlist-priority-b3 {
0%,
100% {
opacity: 0.4;
}
50% {
opacity: 0.7;
}
}
@media (prefers-reduced-motion: reduce) {
.pulsar-punchlist-priority .bar.b1,
.pulsar-punchlist-priority .bar.b2,
.pulsar-punchlist-priority .bar.b3 {
animation: none;
transform: none;
opacity: 1;
}
}