Cluster
CSSThree independent client nodes slide outward from a single shared central engine block, illustrating shared-core multi-tenancy.
- Tier
- CSS
- Dependencies
- None
- Duration
- 4.2 s, loops
- Categories
- Icons and micro-interactions
- Use cases
- Dashboards and reporting, Workflow and approvals
- Industries
- SaaS and software, Cross-industry
- Style
- Minimal line · light stroke
- Set
- tenant
- Tags
- dotspulsegeometricminimalcircle
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-cluster" data-pulsar="tenant-cluster" viewBox="0 0 160 96"><rect width="24" height="24" x="68" y="36" fill="currentColor" fill-opacity=".08" stroke="currentColor" stroke-width="2" rx="4"></rect><circle cx="80" cy="48" r="3" fill="currentColor" opacity=".7"></circle><g class="tenant-cluster-node-1"><line x1="80" x2="80" y1="20" y2="36" stroke="var(--pulsar-accent, currentColor)" stroke-dasharray="2 2" stroke-width="1.8"></line><circle cx="80" cy="20" r="3.5" fill="var(--pulsar-accent, currentColor)"></circle></g><g class="tenant-cluster-node-2"><line x1="50" x2="68" y1="64" y2="52" stroke="var(--pulsar-accent, currentColor)" stroke-dasharray="2 2" stroke-width="1.8"></line><circle cx="50" cy="64" r="3.5" fill="var(--pulsar-accent, currentColor)"></circle></g><g class="tenant-cluster-node-3"><line x1="110" x2="92" y1="64" y2="52" stroke="var(--pulsar-accent, currentColor)" stroke-dasharray="2 2" stroke-width="1.8"></line><circle cx="110" cy="64" r="3.5" fill="var(--pulsar-accent, currentColor)"></circle></g></svg>
animation.css
.pulsar-tenant-cluster {
display: block;
overflow: visible;
}
.pulsar-tenant-cluster .tenant-cluster-node-1 {
animation: tenant-cluster-n1-anim 4200ms ease infinite;
}
.pulsar-tenant-cluster .tenant-cluster-node-2 {
animation: tenant-cluster-n2-anim 4200ms ease infinite;
}
.pulsar-tenant-cluster .tenant-cluster-node-3 {
animation: tenant-cluster-n3-anim 4200ms ease infinite;
}
@keyframes tenant-cluster-n1-anim {
0%,
15% {
opacity: 0.3;
transform: scale(0.85);
transform-origin: 80px 20px;
}
30%,
45% {
opacity: 1;
transform: scale(1.2);
transform-origin: 80px 20px;
}
60%,
100% {
opacity: 0.3;
transform: scale(0.85);
transform-origin: 80px 20px;
}
}
@keyframes tenant-cluster-n2-anim {
0%,
35% {
opacity: 0.3;
transform: scale(0.85);
transform-origin: 50px 64px;
}
50%,
65% {
opacity: 1;
transform: scale(1.2);
transform-origin: 50px 64px;
}
80%,
100% {
opacity: 0.3;
transform: scale(0.85);
transform-origin: 50px 64px;
}
}
@keyframes tenant-cluster-n3-anim {
0%,
55% {
opacity: 0.3;
transform: scale(0.85);
transform-origin: 110px 64px;
}
70%,
85% {
opacity: 1;
transform: scale(1.2);
transform-origin: 110px 64px;
}
100% {
opacity: 0.3;
transform: scale(0.85);
transform-origin: 110px 64px;
}
}
@media (prefers-reduced-motion: reduce) {
.pulsar-tenant-cluster * {
animation: none !important;
}
}