Verify
CSSDual concentric rings spin in opposing directions, locking into place when keyways match.
- Tier
- CSS
- Dependencies
- None
- Duration
- 4 s, loops
- Categories
- Icons and micro-interactions
- Use cases
- Success and confirmation, Security and trust
- Industries
- Education and training, Cross-industry
- Style
- Technical · light stroke
- Set
- accredit
- Tags
- circleringrotateloop
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-accredit-verify" data-pulsar="accredit-verify" viewBox="0 0 160 96"><circle cx="80" cy="48" r="28" stroke="currentColor" stroke-dasharray="16 8 8 8" stroke-width="1.5" class="ring-cw"></circle><circle cx="80" cy="48" r="18" stroke="var(--pulsar-accent, currentColor)" stroke-dasharray="12 6 6 6" stroke-width="2" class="ring-ccw"></circle><circle cx="80" cy="48" r="6" fill="var(--pulsar-accent, currentColor)" class="core"></circle><line x1="80" x2="80" y1="16" y2="80" stroke="currentColor" stroke-dasharray="2 3" opacity=".3"></line></svg>
animation.css
.pulsar-accredit-verify {
display: block;
width: 100%;
height: 100%;
}
.pulsar-accredit-verify .ring-cw {
transform-origin: 80px 48px;
animation: accredit-verify-spin-cw 4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
.pulsar-accredit-verify .ring-ccw {
transform-origin: 80px 48px;
animation: accredit-verify-spin-ccw 4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
.pulsar-accredit-verify .core {
animation: accredit-verify-pulse 4s ease-in-out infinite;
}
@keyframes accredit-verify-spin-cw {
0% {
transform: rotate(0deg);
}
50% {
transform: rotate(180deg);
}
100% {
transform: rotate(360deg);
}
}
@keyframes accredit-verify-spin-ccw {
0% {
transform: rotate(0deg);
}
50% {
transform: rotate(-180deg);
}
100% {
transform: rotate(-360deg);
}
}
@keyframes accredit-verify-pulse {
0%,
100% {
transform: scale(0.8);
opacity: 0.5;
}
50% {
transform: scale(1.3);
opacity: 1;
}
}
@media (prefers-reduced-motion: reduce) {
.pulsar-accredit-verify .ring-cw,
.pulsar-accredit-verify .ring-ccw,
.pulsar-accredit-verify .core {
animation: none;
transform: none;
opacity: 1;
}
}