Deactivate
CSSA solid user shape fades to a thin, hollow outline while a diagonal strike-through line draws across it.
- Tier
- CSS
- Dependencies
- None
- Duration
- 4.2 s, loops
- Categories
- Icons and micro-interactions
- Use cases
- Empty states, Workflow and approvals
- Industries
- SaaS and software, Cross-industry
- Style
- Duotone · light stroke
- Set
- seat
- Tags
- linefademinimaluistroke
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-deactivate" data-pulsar="seat-deactivate" viewBox="0 0 160 96"><rect width="56" height="60" x="52" y="18" fill="currentColor" fill-opacity=".04" stroke="currentColor" stroke-width="1.25" opacity=".3" rx="8"></rect><g class="seat-deactivate-avatar"><circle cx="80" cy="38" r="7" fill="var(--pulsar-accent, currentColor)" stroke="currentColor" stroke-width="1.25"></circle><path fill="var(--pulsar-accent, currentColor)" stroke="currentColor" stroke-width="1.25" d="M67 58c0-7 5-10 13-10s13 3 13 10Z"></path></g><line x1="62" x2="98" y1="28" y2="68" stroke="var(--pulsar-accent, currentColor)" stroke-linecap="round" stroke-width="1.5" class="seat-deactivate-strike"></line></svg>
animation.css
.pulsar-seat-deactivate {
display: block;
overflow: visible;
}
.pulsar-seat-deactivate .seat-deactivate-avatar {
animation: seat-deactivate-avatar-anim 4200ms ease infinite;
}
.pulsar-seat-deactivate .seat-deactivate-strike {
animation: seat-deactivate-strike-anim 4200ms ease infinite;
}
@keyframes seat-deactivate-avatar-anim {
0%,
20% {
opacity: 1;
filter: none;
}
45%,
80% {
opacity: 0.25;
}
92%,
100% {
opacity: 1;
}
}
@keyframes seat-deactivate-strike-anim {
0%,
20% {
opacity: 0;
transform: scaleX(0);
}
40%,
80% {
opacity: 1;
transform: scaleX(1);
}
92%,
100% {
opacity: 0;
transform: scaleX(0);
}
}
@media (prefers-reduced-motion: reduce) {
.pulsar-seat-deactivate .seat-deactivate-avatar,
.pulsar-seat-deactivate .seat-deactivate-strike {
animation: none;
}
}