Pulsar

Centrifuge

CSS

A laboratory rotor crosshair rotates on a central bearing ring with synchronized orbital balance markers.

Tier
CSS
Dependencies
None
Duration
4 s, loops
Categories
Backgrounds and ambient
Use cases
Ambient background
Industries
Healthcare and life sciences
Style
Technical · light stroke
Set
assay
Tags
circleorbitlooprotate

Companion assets

The same artwork, not animated. Derived from the entry’s own resting state, so it matches exactly.

Animated
CSS tier
Static vector
Centrifuge, not animated
Download SVG

Code

animation.svg

<svg xmlns="http://www.w3.org/2000/svg" fill="none" aria-hidden="true" class="pulsar pulsar-assay-centrifuge" data-pulsar="assay-centrifuge" viewBox="0 0 160 96"><circle cx="80" cy="48" r="32" stroke="currentColor" class="ring-outer" opacity=".25"></circle><circle cx="80" cy="48" r="22" stroke="currentColor" stroke-dasharray="3 3" class="ring-mid" opacity=".4"></circle><circle cx="80" cy="48" r="6" stroke="var(--pulsar-accent, currentColor)" stroke-width="1.2" class="hub"></circle><g class="rotor"><line x1="80" x2="80" y1="20" y2="76" stroke="var(--pulsar-accent, currentColor)" stroke-linecap="round" stroke-width="1.2"></line><line x1="52" x2="108" y1="48" y2="48" stroke="var(--pulsar-accent, currentColor)" stroke-linecap="round" stroke-width="1.2"></line><circle cx="80" cy="24" r="3" fill="var(--pulsar-accent, currentColor)"></circle><circle cx="80" cy="72" r="3" fill="var(--pulsar-accent, currentColor)"></circle><circle cx="56" cy="48" r="3" fill="var(--pulsar-accent, currentColor)"></circle><circle cx="104" cy="48" r="3" fill="var(--pulsar-accent, currentColor)"></circle></g></svg>

animation.css

.pulsar-assay-centrifuge {
  display: block;
  width: 100%;
  height: 100%;
}
.pulsar-assay-centrifuge .rotor {
  animation: assay-centrifuge-spin 4s linear infinite;
  transform-origin: 80px 48px;
}
.pulsar-assay-centrifuge .ring-mid {
  animation: assay-centrifuge-counter 4s linear infinite;
  transform-origin: 80px 48px;
}
@keyframes assay-centrifuge-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes assay-centrifuge-counter {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}
@media (prefers-reduced-motion: reduce) {
  .pulsar-assay-centrifuge .rotor,
  .pulsar-assay-centrifuge .ring-mid {
    animation: none;
    transform: none;
  }
}

From this family15 in Assay

See the family