Pulsar

Item checklist

CSS

An inspection checklist queue scrolls vertically as active items pass through a central evaluation zone.

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
barsminimalloopprogress

Companion assets

The same artwork, not animated. Derived from the entry’s own resting state, so it matches exactly.

Animated
CSS tier
Static vector
Item checklist, not animated
Download SVG

Code

animation.svg

<svg xmlns="http://www.w3.org/2000/svg" fill="none" aria-hidden="true" class="pulsar pulsar-punchlist-list" data-pulsar="punchlist-list" viewBox="0 0 160 96"><rect width="96" height="20" x="32" y="38" stroke="var(--pulsar-accent, currentColor)" stroke-dasharray="3 3" class="eval-bracket" rx="2"></rect><g class="list-items"><line x1="40" x2="80" y1="28" y2="28" stroke="currentColor" stroke-linecap="round" stroke-width="1.8" class="itm i1"></line><line x1="40" x2="116" y1="48" y2="48" stroke="var(--pulsar-accent, currentColor)" stroke-linecap="round" stroke-width="2" class="itm i2"></line><line x1="40" x2="90" y1="68" y2="68" stroke="currentColor" stroke-linecap="round" stroke-width="1.8" class="itm i3"></line></g></svg>

animation.css

.pulsar-punchlist-list {
  display: block;
  width: 100%;
  height: 100%;
}
.pulsar-punchlist-list .itm.i1 {
  animation: punchlist-list-flow1 4s ease-in-out infinite;
}
.pulsar-punchlist-list .itm.i2 {
  animation: punchlist-list-flow2 4s ease-in-out infinite;
}
.pulsar-punchlist-list .itm.i3 {
  animation: punchlist-list-flow3 4s ease-in-out infinite;
}
@keyframes punchlist-list-flow1 {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.3;
  }
  50% {
    transform: translateY(-8px);
    opacity: 0.1;
  }
}
@keyframes punchlist-list-flow2 {
  0%,
  100% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(-8px);
    opacity: 0.6;
  }
}
@keyframes punchlist-list-flow3 {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.3;
  }
  50% {
    transform: translateY(-8px);
    opacity: 1;
  }
}
@media (prefers-reduced-motion: reduce) {
  .pulsar-punchlist-list .itm.i1,
  .pulsar-punchlist-list .itm.i2,
  .pulsar-punchlist-list .itm.i3 {
    animation: none;
    transform: none;
    opacity: 1;
  }
}

From this family15 in Punchlist

See the family