Cluster Ping Pong
CSSA crosshair telemetry reticle bounces continuously between two cluster endpoints, emitting resonant impact pulse waves upon arrival.
- Tier
- CSS
- Dependencies
- None
- Duration
- 7.2 s, loops
- Categories
- Loaders and spinners
- Use cases
- Loading and waiting, Sync and integration
- Industries
- IT services and infrastructure, Cross-industry
- Style
- Minimal line · light stroke
- Set
- cluster
- Tags
- looplinedotswave
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" aria-labelledby="cluster-ping-pong-title" class="pulsar pulsar-cluster-ping-pong" data-pulsar="cluster-ping-pong" role="img" viewBox="0 0 160 96"><title id="cluster-ping-pong-title">Crosshair probe shuttling continuously between two cluster endpoints with resonant impact pulses</title><g fill="none" stroke="currentColor" stroke-dasharray="2 3" stroke-width=".5" opacity=".2"><line x1="20" x2="140" y1="48" y2="48"></line><line x1="36" x2="36" y1="36" y2="60"></line><line x1="124" x2="124" y1="36" y2="60"></line></g><g id="cluster-ping-pong-nodeL"><circle cx="36" cy="48" r="6" fill="none" stroke="currentColor"></circle><circle cx="36" cy="48" r="3" fill="currentColor"></circle><circle id="cluster-ping-pong-pulseL" cx="36" cy="48" r="6" fill="none" stroke="currentColor" stroke-width="1" opacity="0"></circle></g><g id="cluster-ping-pong-nodeR"><circle cx="124" cy="48" r="6" fill="none" stroke="currentColor"></circle><circle cx="124" cy="48" r="3" fill="currentColor"></circle><circle id="cluster-ping-pong-pulseR" cx="124" cy="48" r="6" fill="none" stroke="currentColor" stroke-width="1" opacity="0"></circle></g><g id="cluster-ping-pong-probe"><circle cx="36" cy="48" r="4" fill="none" stroke="currentColor"></circle><line x1="32" x2="40" y1="48" y2="48" stroke="currentColor" stroke-width=".8"></line><line x1="36" x2="36" y1="44" y2="52" stroke="currentColor" stroke-width=".8"></line><circle cx="36" cy="48" r="1.5" fill="currentColor"></circle></g></svg>
animation.css
.pulsar-cluster-ping-pong {
--pulsar-accent: currentColor;
}
.pulsar-cluster-ping-pong #cluster-ping-pong-probe circle:first-child,
.pulsar-cluster-ping-pong #cluster-ping-pong-pulseL,
.pulsar-cluster-ping-pong #cluster-ping-pong-pulseR {
stroke: var(--pulsar-accent, currentColor);
}
.pulsar-cluster-ping-pong #cluster-ping-pong-probe circle:last-child,
.pulsar-cluster-ping-pong #cluster-ping-pong-nodeL circle:nth-child(2),
.pulsar-cluster-ping-pong #cluster-ping-pong-nodeR circle:nth-child(2) {
fill: var(--pulsar-accent, currentColor);
}
.pulsar-cluster-ping-pong #cluster-ping-pong-probe {
animation: cluster-ping-pong-shuttle 4800ms ease-in-out infinite;
}
@keyframes cluster-ping-pong-shuttle {
0%,
5% {
transform: translateX(0);
}
50%,
55% {
transform: translateX(88px);
}
100% {
transform: translateX(0);
}
}
.pulsar-cluster-ping-pong #cluster-ping-pong-pulseR {
transform-origin: 124px 48px;
animation: cluster-ping-pong-ringR 4800ms 2400ms ease-out infinite;
}
@keyframes cluster-ping-pong-ringR {
0% {
opacity: 0;
transform: scale(0.6);
}
5% {
opacity: 0.8;
}
25% {
opacity: 0;
transform: scale(2.5);
}
100% {
opacity: 0;
}
}
.pulsar-cluster-ping-pong #cluster-ping-pong-pulseL {
transform-origin: 36px 48px;
animation: cluster-ping-pong-ringL 4800ms 0ms ease-out infinite;
}
@keyframes cluster-ping-pong-ringL {
0% {
opacity: 0;
transform: scale(0.6);
}
5% {
opacity: 0.8;
}
25% {
opacity: 0;
transform: scale(2.5);
}
100% {
opacity: 0;
}
}
@media (prefers-reduced-motion: reduce) {
.pulsar-cluster-ping-pong * {
animation: none !important;
}
.pulsar-cluster-ping-pong #cluster-ping-pong-probe {
transform: translateX(44px);
}
.pulsar-cluster-ping-pong #cluster-ping-pong-pulseL,
.pulsar-cluster-ping-pong #cluster-ping-pong-pulseR {
opacity: 0.3;
transform: scale(1.5);
}
}