Bulk
CSSA stack of three user silhouettes slides onto a team board, representing bulk seat purchasing.
- Tier
- CSS
- Dependencies
- None
- Duration
- 4.4 s, loops
- Categories
- Icons and micro-interactions
- Use cases
- Determinate progress, Workflow and approvals
- Industries
- SaaS and software, Cross-industry
- Style
- Duotone · light stroke
- Set
- seat
- Tags
- staggerbarsgeometricminimalui
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-seat-bulk" data-pulsar="seat-bulk" viewBox="0 0 160 96"><rect width="100" height="56" x="30" y="20" fill="currentColor" fill-opacity=".03" stroke="currentColor" stroke-width="1.25" opacity=".3" rx="6"></rect><g class="seat-bulk-tile-1"><rect width="22" height="36" x="42" y="30" fill="currentColor" fill-opacity=".15" stroke="currentColor" stroke-width="1.25" opacity=".6" rx="4"></rect><circle cx="53" cy="42" r="3.5" fill="currentColor" opacity=".6"></circle></g><g class="seat-bulk-tile-2"><rect width="22" height="36" x="69" y="30" fill="currentColor" fill-opacity=".15" stroke="currentColor" stroke-width="1.25" opacity=".6" rx="4"></rect><circle cx="80" cy="42" r="3.5" fill="currentColor" opacity=".6"></circle></g><g class="seat-bulk-tile-3"><rect width="22" height="36" x="96" y="30" fill="var(--pulsar-accent, currentColor)" fill-opacity=".2" stroke="var(--pulsar-accent, currentColor)" stroke-width="1.5" rx="4"></rect><circle cx="107" cy="42" r="3.5" fill="var(--pulsar-accent, currentColor)"></circle></g></svg>
animation.css
.pulsar-seat-bulk {
display: block;
overflow: visible;
}
.pulsar-seat-bulk .seat-bulk-tile-1 {
animation: seat-bulk-slide-anim 4400ms cubic-bezier(0.2, 1, 0.3, 1) infinite -400ms;
}
.pulsar-seat-bulk .seat-bulk-tile-2 {
animation: seat-bulk-slide-anim 4400ms cubic-bezier(0.2, 1, 0.3, 1) infinite -200ms;
}
.pulsar-seat-bulk .seat-bulk-tile-3 {
animation: seat-bulk-slide-anim 4400ms cubic-bezier(0.2, 1, 0.3, 1) infinite 0ms;
}
@keyframes seat-bulk-slide-anim {
0%,
15% {
transform: translateY(-10px);
opacity: 0.3;
}
40%,
80% {
transform: translateY(0);
opacity: 1;
}
92%,
100% {
transform: translateY(-10px);
opacity: 0.3;
}
}
@media (prefers-reduced-motion: reduce) {
.pulsar-seat-bulk .seat-bulk-tile-1,
.pulsar-seat-bulk .seat-bulk-tile-2,
.pulsar-seat-bulk .seat-bulk-tile-3 {
animation: none;
}
}