Deactivate
CSSA tenant folder card rotates forty-five degrees and slides into an archival drawer, which slides shut.
- 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
- Minimal line · light stroke
- Set
- tenant
- Tags
- barsgeometricminimaluistroke
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-tenant-deactivate" data-pulsar="tenant-deactivate" viewBox="0 0 160 96"><rect width="46" height="48" x="76" y="24" stroke="currentColor" stroke-width="1.8" opacity=".4" rx="4"></rect><line x1="99" x2="99" y1="42" y2="54" stroke="currentColor" stroke-linecap="round" stroke-width="2" opacity=".3"></line><g class="tenant-deactivate-card"><rect width="34" height="32" x="38" y="32" fill="var(--pulsar-accent, currentColor)" fill-opacity=".2" stroke="var(--pulsar-accent, currentColor)" stroke-width="2" rx="3"></rect><circle cx="55" cy="48" r="2.5" fill="var(--pulsar-accent, currentColor)"></circle></g></svg>
animation.css
.pulsar-tenant-deactivate {
display: block;
overflow: visible;
}
.pulsar-tenant-deactivate .tenant-deactivate-card {
transform-origin: 55px 48px;
animation: tenant-deactivate-card-anim 4200ms cubic-bezier(0.3, 0, 0.2, 1) infinite;
}
@keyframes tenant-deactivate-card-anim {
0%,
15% {
transform: translate(0, 0) rotate(0deg);
opacity: 1;
}
42%,
78% {
transform: translate(42px, 0) rotate(20deg) scale(0.7);
opacity: 0.4;
}
92%,
100% {
transform: translate(0, 0) rotate(0deg);
opacity: 1;
}
}
@media (prefers-reduced-motion: reduce) {
.pulsar-tenant-deactivate * {
animation: none !important;
}
}