Task dispatch
CSSA punch card datum translates across trade discipline columns with an assignee node pulse.
- 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
- geometricminimalloopprogress
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-assign" data-pulsar="punchlist-assign" viewBox="0 0 160 96"><line x1="80" x2="80" y1="20" y2="76" stroke="currentColor" stroke-dasharray="3 3" class="col-divider" opacity=".25"></line><g class="card"><rect width="36" height="32" x="42" y="32" stroke="var(--pulsar-accent, currentColor)" stroke-width="1.4" rx="2"></rect><circle cx="50" cy="40" r="2.5" fill="var(--pulsar-accent, currentColor)" class="assignee-dot"></circle><line x1="56" x2="72" y1="40" y2="40" stroke="currentColor" opacity=".5"></line><line x1="48" x2="68" y1="50" y2="50" stroke="currentColor" opacity=".5"></line></g></svg>
animation.css
.pulsar-punchlist-assign {
display: block;
width: 100%;
height: 100%;
}
.pulsar-punchlist-assign .card {
animation: punchlist-assign-dispatch 4s ease-in-out infinite;
}
.pulsar-punchlist-assign .assignee-dot {
animation: punchlist-assign-dot 4s ease-in-out infinite;
}
@keyframes punchlist-assign-dispatch {
0%,
20% {
transform: translateX(0);
}
60%,
80% {
transform: translateX(40px);
}
100% {
transform: translateX(0);
}
}
@keyframes punchlist-assign-dot {
0%,
100% {
transform: scale(0.8);
transform-origin: 50px 40px;
opacity: 0.5;
}
50% {
transform: scale(1.3);
transform-origin: 50px 40px;
opacity: 1;
}
}
@media (prefers-reduced-motion: reduce) {
.pulsar-punchlist-assign .card,
.pulsar-punchlist-assign .assignee-dot {
animation: none;
transform: none;
opacity: 1;
}
}