Sorting columns
CSSScattered defect indicators organize smoothly into three trade discipline columns.
- Tier
- CSS
- Dependencies
- None
- Duration
- 4 s, loops
- Categories
- Data and progress
- Use cases
- Determinate progress, Workflow and approvals
- Industries
- Construction and built environment, Cross-industry
- Style
- Minimal line · light stroke
- Set
- punchlist
- Tags
- dotsminimalloopgeometric
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-categorize" data-pulsar="punchlist-categorize" viewBox="0 0 160 96"><g stroke="currentColor" stroke-width=".8" class="col-guides" opacity=".2"><line x1="48" x2="48" y1="20" y2="76"></line><line x1="80" x2="80" y1="20" y2="76"></line><line x1="112" x2="112" y1="20" y2="76"></line></g><circle cx="48" cy="36" r="3" fill="var(--pulsar-accent, currentColor)" class="dot d1"></circle><circle cx="48" cy="56" r="3" fill="var(--pulsar-accent, currentColor)" class="dot d2"></circle><circle cx="80" cy="36" r="3" fill="currentColor" class="dot d3"></circle><circle cx="80" cy="56" r="3" fill="currentColor" class="dot d4"></circle><circle cx="112" cy="36" r="3" fill="var(--pulsar-accent, currentColor)" class="dot d5"></circle><circle cx="112" cy="56" r="3" fill="currentColor" class="dot d6"></circle></svg>
animation.css
.pulsar-punchlist-categorize {
display: block;
width: 100%;
height: 100%;
}
.pulsar-punchlist-categorize .dot.d1 {
animation: punchlist-categorize-sort1 4s ease-in-out infinite;
}
.pulsar-punchlist-categorize .dot.d3 {
animation: punchlist-categorize-sort2 4s ease-in-out infinite;
}
.pulsar-punchlist-categorize .dot.d5 {
animation: punchlist-categorize-sort3 4s ease-in-out infinite;
}
@keyframes punchlist-categorize-sort1 {
0%,
100% {
transform: translate(14px, 8px);
}
50% {
transform: translate(0, 0);
}
}
@keyframes punchlist-categorize-sort2 {
0%,
100% {
transform: translate(-10px, -6px);
}
50% {
transform: translate(0, 0);
}
}
@keyframes punchlist-categorize-sort3 {
0%,
100% {
transform: translate(8px, 10px);
}
50% {
transform: translate(0, 0);
}
}
@media (prefers-reduced-motion: reduce) {
.pulsar-punchlist-categorize .dot.d1,
.pulsar-punchlist-categorize .dot.d3,
.pulsar-punchlist-categorize .dot.d5 {
animation: none;
transform: none;
}
}