Backup
CSSA tenant database cylinder replicates its outline, which scales down and slides into a vault icon.
- Tier
- CSS
- Dependencies
- None
- Duration
- 4.2 s, loops
- Categories
- Icons and micro-interactions
- Use cases
- Success and confirmation, Sync and integration
- Industries
- SaaS and software, Cross-industry
- Style
- Minimal line · light stroke
- Set
- tenant
- Tags
- barsgeometricminimaluiprogress
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-backup" data-pulsar="tenant-backup" viewBox="0 0 160 96"><ellipse cx="80" cy="26" stroke="currentColor" stroke-width="1.8" opacity=".6" rx="22" ry="6"></ellipse><line x1="58" x2="58" y1="26" y2="40" stroke="currentColor" stroke-width="1.8" opacity=".6"></line><line x1="102" x2="102" y1="26" y2="40" stroke="currentColor" stroke-width="1.8" opacity=".6"></line><path stroke="currentColor" stroke-width="1.8" d="M58 40c0 5 44 5 44 0" opacity=".6"></path><g class="tenant-backup-snapshot"><ellipse cx="80" cy="26" fill="var(--pulsar-accent, currentColor)" fill-opacity=".15" stroke="var(--pulsar-accent, currentColor)" stroke-width="2" rx="22" ry="6"></ellipse><path stroke="var(--pulsar-accent, currentColor)" stroke-width="2" d="M58 40c0 5 44 5 44 0"></path></g><rect width="28" height="18" x="66" y="66" stroke="currentColor" stroke-width="1.5" opacity=".4" rx="3"></rect><circle cx="80" cy="75" r="2" fill="var(--pulsar-accent, currentColor)"></circle></svg>
animation.css
.pulsar-tenant-backup {
display: block;
overflow: visible;
}
.pulsar-tenant-backup .tenant-backup-snapshot {
animation: tenant-backup-snapshot-anim 4200ms cubic-bezier(0.2, 0.8, 0.3, 1) infinite;
}
@keyframes tenant-backup-snapshot-anim {
0%,
15% {
transform: translateY(0) scale(1);
opacity: 0;
}
25% {
opacity: 1;
}
50%,
78% {
transform: translateY(38px) scale(0.65);
opacity: 0.9;
}
88%,
100% {
transform: translateY(38px) scale(0.65);
opacity: 0;
}
}
@media (prefers-reduced-motion: reduce) {
.pulsar-tenant-backup * {
animation: none !important;
}
}