Reclaim
CSSA user avatar is pulled upward out of its slot as the slot border returns to an empty dashed outline.
- Tier
- CSS
- Dependencies
- None
- Duration
- 4.2 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
- arrowfademinimaluigeometric
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-reclaim" data-pulsar="seat-reclaim" viewBox="0 0 160 96"><rect width="52" height="52" x="54" y="24" fill="currentColor" fill-opacity=".03" stroke="currentColor" stroke-dasharray="3 3" stroke-width="1.25" opacity=".4" rx="8"></rect><g class="seat-reclaim-avatar"><circle cx="80" cy="44" r="6.5" fill="var(--pulsar-accent, currentColor)" fill-opacity=".2" stroke="var(--pulsar-accent, currentColor)" stroke-width="1.5"></circle><path fill="var(--pulsar-accent, currentColor)" fill-opacity=".2" stroke="var(--pulsar-accent, currentColor)" stroke-width="1.5" d="M68 60c0-7 5-9 12-9s12 2 12 9"></path></g><path stroke="var(--pulsar-accent, currentColor)" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5" d="M80 20V10m-4 4 4-4 4 4" class="seat-reclaim-arrow"></path></svg>
animation.css
.pulsar-seat-reclaim {
display: block;
overflow: visible;
}
.pulsar-seat-reclaim .seat-reclaim-avatar {
animation: seat-reclaim-lift-anim 4200ms cubic-bezier(0.2, 1, 0.3, 1) infinite;
}
.pulsar-seat-reclaim .seat-reclaim-arrow {
animation: seat-reclaim-arrow-anim 4200ms ease infinite;
}
@keyframes seat-reclaim-lift-anim {
0%,
20% {
transform: translateY(0);
opacity: 1;
}
50%,
80% {
transform: translateY(-20px);
opacity: 0;
}
92%,
100% {
transform: translateY(0);
opacity: 1;
}
}
@keyframes seat-reclaim-arrow-anim {
0%,
20% {
opacity: 0.2;
transform: translateY(0);
}
45%,
75% {
opacity: 1;
transform: translateY(-4px);
}
90%,
100% {
opacity: 0.2;
transform: translateY(0);
}
}
@media (prefers-reduced-motion: reduce) {
.pulsar-seat-reclaim .seat-reclaim-avatar,
.pulsar-seat-reclaim .seat-reclaim-arrow {
animation: none;
}
}