Seal
CSSA circular technical seal with an accent tick rotates slightly as radial measurement ticks fan outward.
- 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
- circlerotateringloop
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-seal" data-pulsar="accredit-seal" viewBox="0 0 160 96"><g class="seal-core"><circle cx="80" cy="48" r="30" stroke="currentColor" stroke-dasharray="4 3" stroke-width="1.5" class="outer-ring"></circle><circle cx="80" cy="48" r="22" stroke="var(--pulsar-accent, currentColor)" stroke-width="1.5" class="mid-ring"></circle><circle cx="80" cy="48" r="14" stroke="currentColor" stroke-dasharray="2 2" class="inner-ring" opacity=".4"></circle><path stroke="var(--pulsar-accent, currentColor)" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m74 48 4 4 9-9" class="seal-check"></path></g><g class="radial-ticks"><line x1="80" x2="80" y1="12" y2="16" stroke="currentColor" stroke-width="1.5"></line><line x1="105" x2="102" y1="23" y2="26" stroke="currentColor" stroke-width="1.5"></line><line x1="116" x2="112" y1="48" y2="48" stroke="currentColor" stroke-width="1.5"></line><line x1="105" x2="102" y1="73" y2="70" stroke="currentColor" stroke-width="1.5"></line><line x1="80" x2="80" y1="84" y2="80" stroke="currentColor" stroke-width="1.5"></line><line x1="55" x2="58" y1="73" y2="70" stroke="currentColor" stroke-width="1.5"></line><line x1="44" x2="48" y1="48" y2="48" stroke="currentColor" stroke-width="1.5"></line><line x1="55" x2="58" y1="23" y2="26" stroke="currentColor" stroke-width="1.5"></line></g></svg>
animation.css
.pulsar-accredit-seal {
display: block;
width: 100%;
height: 100%;
}
.pulsar-accredit-seal .seal-core {
transform-origin: 80px 48px;
animation: accredit-seal-sway 4s ease-in-out infinite;
}
.pulsar-accredit-seal .radial-ticks {
transform-origin: 80px 48px;
animation: accredit-seal-fan 4s ease-in-out infinite;
}
@keyframes accredit-seal-sway {
0%,
100% {
transform: rotate(0deg);
}
30%,
70% {
transform: rotate(8deg);
}
}
@keyframes accredit-seal-fan {
0%,
100% {
transform: scale(0.95);
opacity: 0.4;
}
50% {
transform: scale(1.08);
opacity: 1;
}
}
@media (prefers-reduced-motion: reduce) {
.pulsar-accredit-seal .seal-core,
.pulsar-accredit-seal .radial-ticks {
animation: none;
transform: none;
opacity: 1;
}
}