Migration
CSSA data packet glides along a path from a shared database cluster into a dedicated, isolated server container.
- Tier
- CSS
- Dependencies
- None
- Duration
- 4 s, loops
- Categories
- Icons and micro-interactions
- Use cases
- Determinate progress, Sync and integration
- Industries
- SaaS and software, Cross-industry
- Style
- Minimal line · light stroke
- Set
- tenant
- Tags
- linepulsegeometricminimalui
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-migration" data-pulsar="tenant-migration" viewBox="0 0 160 96"><rect width="34" height="40" x="28" y="28" stroke="currentColor" stroke-width="1.8" opacity=".4" rx="4"></rect><circle cx="45" cy="48" r="3" fill="currentColor" opacity=".4"></circle><line x1="62" x2="98" y1="48" y2="48" stroke="currentColor" stroke-dasharray="3 3" stroke-width="1.5" opacity=".4"></line><rect width="34" height="40" x="98" y="28" fill="var(--pulsar-accent, currentColor)" fill-opacity=".1" stroke="var(--pulsar-accent, currentColor)" stroke-width="2" rx="4"></rect><circle cx="115" cy="48" r="3" fill="var(--pulsar-accent, currentColor)"></circle><circle cx="45" cy="48" r="3.5" fill="var(--pulsar-accent, currentColor)" class="tenant-migration-packet"></circle></svg>
animation.css
.pulsar-tenant-migration {
display: block;
overflow: visible;
}
.pulsar-tenant-migration .tenant-migration-packet {
animation: tenant-migration-packet-anim 4000ms cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
@keyframes tenant-migration-packet-anim {
0% {
transform: translateX(0);
opacity: 0;
}
15% {
opacity: 1;
}
50%,
75% {
transform: translateX(70px);
opacity: 1;
}
85%,
100% {
transform: translateX(70px);
opacity: 0;
}
}
@media (prefers-reduced-motion: reduce) {
.pulsar-tenant-migration * {
animation: none !important;
}
}