Addon
CSSA plus sign merges into an active license grid, expanding the total grid capacity by one slot.
- Tier
- CSS
- Dependencies
- None
- Duration
- 4.4 s, loops
- Categories
- Icons and micro-interactions
- Use cases
- Determinate progress, Onboarding and setup
- Industries
- SaaS and software, Cross-industry
- Style
- Duotone · light stroke
- Set
- seat
- Tags
- barsgeometricminimalscalepulse
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-addon" data-pulsar="seat-addon" viewBox="0 0 160 96"><g class="seat-addon-base"><rect width="22" height="32" x="28" y="32" fill="currentColor" fill-opacity=".15" stroke="currentColor" stroke-width="1.25" opacity=".6" rx="4"></rect><rect width="22" height="32" x="56" y="32" fill="currentColor" fill-opacity=".15" stroke="currentColor" stroke-width="1.25" opacity=".6" rx="4"></rect><rect width="22" height="32" x="84" y="32" fill="currentColor" fill-opacity=".15" stroke="currentColor" stroke-width="1.25" opacity=".6" rx="4"></rect></g><g class="seat-addon-slot"><rect width="22" height="32" x="112" y="32" fill="var(--pulsar-accent, currentColor)" fill-opacity=".2" stroke="var(--pulsar-accent, currentColor)" stroke-width="1.5" rx="4"></rect><path stroke="var(--pulsar-accent, currentColor)" stroke-linecap="round" stroke-width="1.5" d="M123 42v12m-6-6h12"></path></g></svg>
animation.css
.pulsar-seat-addon {
display: block;
overflow: visible;
}
.pulsar-seat-addon .seat-addon-slot {
animation: seat-addon-slide-anim 4400ms cubic-bezier(0.2, 1, 0.3, 1) infinite;
transform-origin: 123px 48px;
}
@keyframes seat-addon-slide-anim {
0%,
15% {
transform: translateX(12px) scale(0.7);
opacity: 0;
}
40%,
80% {
transform: translateX(0) scale(1);
opacity: 1;
}
92%,
100% {
transform: translateX(12px) scale(0.7);
opacity: 0;
}
}
@media (prefers-reduced-motion: reduce) {
.pulsar-seat-addon .seat-addon-slot {
animation: none;
}
}