Pooling
CSSFour isolated user bubbles slide inward to merge into a single shared organizational license pool.
- Tier
- CSS
- Dependencies
- None
- Duration
- 4.5 s, loops
- Categories
- Icons and micro-interactions
- Use cases
- Dashboards and reporting, Workflow and approvals
- Industries
- SaaS and software, Cross-industry
- Style
- Duotone · light stroke
- Set
- seat
- Tags
- circlegeometricminimalscalepulse
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-seat-pooling" data-pulsar="seat-pooling" viewBox="0 0 160 96"><circle cx="80" cy="48" r="22" fill="var(--pulsar-accent, currentColor)" fill-opacity=".12" stroke="var(--pulsar-accent, currentColor)" stroke-width="1.5" class="seat-pooling-center"></circle><g class="seat-pooling-node-t"><circle cx="80" cy="22" r="7" fill="currentColor" fill-opacity=".2" stroke="currentColor" stroke-width="1.25" opacity=".7"></circle></g><g class="seat-pooling-node-b"><circle cx="80" cy="74" r="7" fill="currentColor" fill-opacity=".2" stroke="currentColor" stroke-width="1.25" opacity=".7"></circle></g><g class="seat-pooling-node-l"><circle cx="44" cy="48" r="7" fill="currentColor" fill-opacity=".2" stroke="currentColor" stroke-width="1.25" opacity=".7"></circle></g><g class="seat-pooling-node-r"><circle cx="116" cy="48" r="7" fill="currentColor" fill-opacity=".2" stroke="currentColor" stroke-width="1.25" opacity=".7"></circle></g></svg>
animation.css
.pulsar-seat-pooling {
display: block;
overflow: visible;
}
.pulsar-seat-pooling .seat-pooling-center {
animation: seat-pooling-center-anim 4500ms ease-in-out infinite;
transform-origin: 80px 48px;
}
.pulsar-seat-pooling .seat-pooling-node-t {
animation: seat-pooling-t-anim 4500ms ease-in-out infinite;
}
.pulsar-seat-pooling .seat-pooling-node-b {
animation: seat-pooling-b-anim 4500ms ease-in-out infinite;
}
.pulsar-seat-pooling .seat-pooling-node-l {
animation: seat-pooling-l-anim 4500ms ease-in-out infinite;
}
.pulsar-seat-pooling .seat-pooling-node-r {
animation: seat-pooling-r-anim 4500ms ease-in-out infinite;
}
@keyframes seat-pooling-center-anim {
0%,
15% {
transform: scale(0.8);
opacity: 0.4;
}
45%,
75% {
transform: scale(1.15);
opacity: 1;
}
90%,
100% {
transform: scale(0.8);
opacity: 0.4;
}
}
@keyframes seat-pooling-t-anim {
0%,
15% {
transform: translateY(0);
opacity: 0.8;
}
45%,
75% {
transform: translateY(18px);
opacity: 0;
}
90%,
100% {
transform: translateY(0);
opacity: 0.8;
}
}
@keyframes seat-pooling-b-anim {
0%,
15% {
transform: translateY(0);
opacity: 0.8;
}
45%,
75% {
transform: translateY(-18px);
opacity: 0;
}
90%,
100% {
transform: translateY(0);
opacity: 0.8;
}
}
@keyframes seat-pooling-l-anim {
0%,
15% {
transform: translateX(0);
opacity: 0.8;
}
45%,
75% {
transform: translateX(26px);
opacity: 0;
}
90%,
100% {
transform: translateX(0);
opacity: 0.8;
}
}
@keyframes seat-pooling-r-anim {
0%,
15% {
transform: translateX(0);
opacity: 0.8;
}
45%,
75% {
transform: translateX(-26px);
opacity: 0;
}
90%,
100% {
transform: translateX(0);
opacity: 0.8;
}
}
@media (prefers-reduced-motion: reduce) {
.pulsar-seat-pooling .seat-pooling-center,
.pulsar-seat-pooling .seat-pooling-node-t,
.pulsar-seat-pooling .seat-pooling-node-b,
.pulsar-seat-pooling .seat-pooling-node-l,
.pulsar-seat-pooling .seat-pooling-node-r {
animation: none;
}
}