Transfer
CSSA solid accent-colored user node slides from one licensing block to another adjacent unassigned block.
- Tier
- CSS
- Dependencies
- None
- Duration
- 4.4 s, loops
- Categories
- Icons and micro-interactions
- Use cases
- Transitions and reveals, Workflow and approvals
- Industries
- SaaS and software, Cross-industry
- Style
- Duotone · light stroke
- Set
- seat
- Tags
- arrowminimaluigeometricline
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-transfer" data-pulsar="seat-transfer" viewBox="0 0 160 96"><rect width="40" height="48" x="32" y="24" fill="currentColor" fill-opacity=".04" stroke="currentColor" stroke-width="1.25" opacity=".4" rx="6"></rect><rect width="40" height="48" x="88" y="24" fill="currentColor" fill-opacity=".04" stroke="currentColor" stroke-width="1.25" opacity=".4" rx="6"></rect><line x1="52" x2="108" y1="48" y2="48" stroke="currentColor" stroke-dasharray="3 3" opacity=".3"></line><g class="seat-transfer-node"><circle cx="52" cy="48" r="10" fill="var(--pulsar-accent, currentColor)" fill-opacity=".2" stroke="var(--pulsar-accent, currentColor)" stroke-width="1.5"></circle><circle cx="52" cy="44" r="3.5" fill="var(--pulsar-accent, currentColor)"></circle><path stroke="var(--pulsar-accent, currentColor)" d="M46 54c0-4 3-5 6-5s6 1 6 5"></path></g></svg>
animation.css
.pulsar-seat-transfer {
display: block;
overflow: visible;
}
.pulsar-seat-transfer .seat-transfer-node {
animation: seat-transfer-slide-anim 4400ms cubic-bezier(0.2, 1, 0.3, 1) infinite;
}
@keyframes seat-transfer-slide-anim {
0%,
15% {
transform: translateX(0);
}
45%,
75% {
transform: translateX(56px);
}
90%,
100% {
transform: translateX(0);
}
}
@media (prefers-reduced-motion: reduce) {
.pulsar-seat-transfer .seat-transfer-node {
animation: none;
}
}