Attain
CSSA precision technical star formed by intersecting drafting arcs scales up and pulses at center.
- 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
- stargeometricscaleloop
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-attain" data-pulsar="accredit-attain" viewBox="0 0 160 96"><circle cx="80" cy="48" r="30" stroke="currentColor" stroke-dasharray="3 3" opacity=".25"></circle><g class="star-assembly"><polygon fill="var(--pulsar-accent, currentColor)" fill-opacity=".15" stroke="var(--pulsar-accent, currentColor)" stroke-width="1.5" points="80,22 86,40 104,40 90,52 96,70 80,58 64,70 70,52 56,40 74,40"></polygon><circle cx="80" cy="48" r="6" fill="var(--pulsar-accent, currentColor)"></circle></g></svg>
animation.css
.pulsar-accredit-attain {
display: block;
width: 100%;
height: 100%;
}
.pulsar-accredit-attain .star-assembly {
transform-origin: 80px 48px;
animation: accredit-attain-pop 4s cubic-bezier(0.34, 1.56, 0.64, 1) infinite;
}
@keyframes accredit-attain-pop {
0%,
100% {
transform: scale(0.88);
opacity: 0.6;
}
50% {
transform: scale(1.12);
opacity: 1;
}
}
@media (prefers-reduced-motion: reduce) {
.pulsar-accredit-attain .star-assembly {
animation: none;
transform: none;
opacity: 1;
}
}