Issue resolution
CSSA completed punch list row slides outward as remaining inspection items smoothly shift upward in list reflow.
- Tier
- CSS
- Dependencies
- None
- Duration
- 4 s, loops
- Categories
- Data and progress
- Use cases
- Success and confirmation, 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.
Code
animation.svg
<svg xmlns="http://www.w3.org/2000/svg" fill="none" aria-hidden="true" class="pulsar pulsar-punchlist-resolve" data-pulsar="punchlist-resolve" viewBox="0 0 160 96"><g class="row r1"><rect width="104" height="12" x="28" y="24" stroke="var(--pulsar-accent, currentColor)" stroke-width="1.2" rx="2"></rect><line x1="36" x2="60" y1="30" y2="30" stroke="var(--pulsar-accent, currentColor)" stroke-linecap="round" stroke-width="1.4"></line></g><g class="row r2"><rect width="104" height="12" x="28" y="42" stroke="currentColor" stroke-width="1.2" opacity=".3" rx="2"></rect><line x1="36" x2="80" y1="48" y2="48" stroke="currentColor" stroke-linecap="round" stroke-width="1.4" opacity=".5"></line></g><g class="row r3"><rect width="104" height="12" x="28" y="60" stroke="currentColor" stroke-width="1.2" opacity=".3" rx="2"></rect><line x1="36" x2="70" y1="66" y2="66" stroke="currentColor" stroke-linecap="round" stroke-width="1.4" opacity=".5"></line></g></svg>
animation.css
.pulsar-punchlist-resolve {
display: block;
width: 100%;
height: 100%;
}
.pulsar-punchlist-resolve .row.r1 {
animation: punchlist-resolve-exit 4s ease-in-out infinite;
}
.pulsar-punchlist-resolve .row.r2 {
animation: punchlist-resolve-shift2 4s ease-in-out infinite;
}
.pulsar-punchlist-resolve .row.r3 {
animation: punchlist-resolve-shift3 4s ease-in-out infinite;
}
@keyframes punchlist-resolve-exit {
0%,
20% {
transform: translateX(0);
opacity: 1;
}
50%,
80% {
transform: translateX(40px);
opacity: 0;
}
100% {
transform: translateX(0);
opacity: 1;
}
}
@keyframes punchlist-resolve-shift2 {
0%,
20% {
transform: translateY(0);
}
50%,
80% {
transform: translateY(-18px);
}
100% {
transform: translateY(0);
}
}
@keyframes punchlist-resolve-shift3 {
0%,
20% {
transform: translateY(0);
}
50%,
80% {
transform: translateY(-18px);
}
100% {
transform: translateY(0);
}
}
@media (prefers-reduced-motion: reduce) {
.pulsar-punchlist-resolve .row.r1,
.pulsar-punchlist-resolve .row.r2,
.pulsar-punchlist-resolve .row.r3 {
animation: none;
transform: none;
opacity: 1;
}
}