Provision
CSSA new server rack card slides into a virtual enclosure, lighting up with a green status indicator.
- Tier
- CSS
- Dependencies
- None
- Duration
- 4.5 s, loops
- Categories
- Icons and micro-interactions
- Use cases
- Determinate progress, Workflow and approvals
- 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-provision" data-pulsar="tenant-provision" viewBox="0 0 160 96"><rect width="76" height="52" x="42" y="22" stroke="currentColor" stroke-width="1.8" opacity=".4" rx="4"></rect><line x1="42" x2="118" y1="39" y2="39" stroke="currentColor" stroke-dasharray="3 3" stroke-width="1.2" opacity=".3"></line><line x1="42" x2="118" y1="57" y2="57" stroke="currentColor" stroke-dasharray="3 3" stroke-width="1.2" opacity=".3"></line><rect width="68" height="10" x="46" y="26" stroke="currentColor" stroke-width="1.5" opacity=".5" rx="2"></rect><g class="tenant-provision-blade"><rect width="68" height="10" x="46" y="43" fill="var(--pulsar-accent, currentColor)" fill-opacity=".2" stroke="var(--pulsar-accent, currentColor)" stroke-width="2" rx="2"></rect><circle cx="54" cy="48" r="2" fill="var(--pulsar-accent, currentColor)"></circle></g></svg>
animation.css
.pulsar-tenant-provision {
display: block;
overflow: visible;
}
.pulsar-tenant-provision .tenant-provision-blade {
animation: tenant-provision-blade-anim 4500ms cubic-bezier(0.2, 1, 0.3, 1) infinite;
}
@keyframes tenant-provision-blade-anim {
0%,
15% {
transform: translateX(45px);
opacity: 0;
}
38%,
80% {
transform: translateX(0);
opacity: 1;
}
92%,
100% {
transform: translateX(45px);
opacity: 0;
}
}
@media (prefers-reduced-motion: reduce) {
.pulsar-tenant-provision * {
animation: none !important;
}
}