Pulsar

Verify

CSS

A circular badge outline slowly rotates clockwise as two small checkmark stroke segments in the center fade in and out in alternating beats.

Tier
CSS
Dependencies
None
Duration
4 s, loops
Categories
Loaders and spinners
Use cases
Loading and waiting, Compliance and audit
Industries
Legal, Cross-industry
Style
Minimal line · light stroke
Set
clause
Tags
circleringstrokeloop

Companion assets

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

Animated
CSS tier
Static vector
Verify, not animated
Download SVG

Code

animation.svg

<svg xmlns="http://www.w3.org/2000/svg" fill="none" aria-hidden="true" class="pulsar pulsar-clause-verify" data-pulsar="clause-verify" viewBox="0 0 160 96"><g class="badge-ring" transform="translate(80 48)"><circle r="26" stroke="currentColor" stroke-dasharray="6 4" stroke-width="1.25" opacity=".4"></circle><circle r="20" stroke="var(--pulsar-accent, currentColor)" stroke-dasharray="24 10" stroke-width="1.5"></circle></g><g class="check-core"><path stroke="var(--pulsar-accent, currentColor)" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m72 48 6 6 14-14" class="tick-stem"></path></g><g stroke="currentColor" stroke-linecap="round" stroke-width="1.25" class="flank-lines" opacity=".3"><line x1="28" x2="42" y1="48" y2="48"></line><line x1="118" x2="132" y1="48" y2="48"></line></g></svg>

animation.css

.pulsar-clause-verify {
  display: block;
  width: 100%;
  height: 100%;
}
.pulsar-clause-verify .badge-ring {
  transform-origin: 80px 48px;
  animation: clause-verify-rotate 4s linear infinite;
}
.pulsar-clause-verify .tick-stem {
  transform-origin: 80px 48px;
  animation: clause-verify-pulse 4s ease-in-out infinite;
}
.pulsar-clause-verify .flank-lines {
  animation: clause-verify-flank 4s ease-in-out infinite;
}
@keyframes clause-verify-rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes clause-verify-pulse {
  0%,
  100% {
    transform: scale(0.9);
    opacity: 0.4;
  }
  50% {
    transform: scale(1.1);
    opacity: 1;
  }
}
@keyframes clause-verify-flank {
  0%,
  100% {
    opacity: 0.2;
  }
  50% {
    opacity: 0.6;
  }
}
@media (prefers-reduced-motion: reduce) {
  .pulsar-clause-verify .badge-ring,
  .pulsar-clause-verify .tick-stem,
  .pulsar-clause-verify .flank-lines {
    animation: none;
    transform: none;
    opacity: 0.8;
  }
}

From this family15 in Clause

See the family