Derivation
CSSA seed key splits into three nested concentric rings that rotate in opposing directions until their teeth align.
- Tier
- CSS
- Dependencies
- None
- Duration
- 4.5 s, loops
- Categories
- Data and progress
- Use cases
- Security and trust, Workflow and approvals
- Industries
- SaaS and software, Security and identity
- Style
- Technical · light stroke
- Set
- credential
- Tags
- rotateringcirclegeometricminimal
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-credential-derivation" data-pulsar="credential-derivation" viewBox="0 0 160 96"><circle cx="80" cy="48" r="3.5" fill="currentColor"></circle><g class="credential-derivation-ring-1"><circle cx="80" cy="48" r="14" stroke="currentColor" stroke-dasharray="6 4" stroke-width="1.5" opacity=".6"></circle><circle cx="80" cy="34" r="2" fill="currentColor"></circle></g><g class="credential-derivation-ring-2"><circle cx="80" cy="48" r="22" stroke="var(--pulsar-accent, currentColor)" stroke-dasharray="8 6" stroke-width="1.8"></circle><circle cx="102" cy="48" r="2" fill="var(--pulsar-accent, currentColor)"></circle></g><g class="credential-derivation-ring-3"><circle cx="80" cy="48" r="30" stroke="var(--pulsar-accent, currentColor)" stroke-dasharray="10 8" stroke-width="2"></circle><circle cx="80" cy="78" r="2.5" fill="var(--pulsar-accent, currentColor)"></circle></g></svg>
animation.css
.pulsar-credential-derivation {
display: block;
overflow: visible;
}
.pulsar-credential-derivation .credential-derivation-ring-1 {
transform-origin: 80px 48px;
animation: credential-derivation-r1-anim 4500ms cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
.pulsar-credential-derivation .credential-derivation-ring-2 {
transform-origin: 80px 48px;
animation: credential-derivation-r2-anim 4500ms cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
.pulsar-credential-derivation .credential-derivation-ring-3 {
transform-origin: 80px 48px;
animation: credential-derivation-r3-anim 4500ms cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
@keyframes credential-derivation-r1-anim {
0% {
transform: rotate(0deg);
}
40%,
80% {
transform: rotate(180deg);
}
100% {
transform: rotate(360deg);
}
}
@keyframes credential-derivation-r2-anim {
0% {
transform: rotate(0deg);
}
40%,
80% {
transform: rotate(-180deg);
}
100% {
transform: rotate(-360deg);
}
}
@keyframes credential-derivation-r3-anim {
0% {
transform: rotate(0deg);
}
40%,
80% {
transform: rotate(90deg);
}
100% {
transform: rotate(360deg);
}
}
@media (prefers-reduced-motion: reduce) {
.pulsar-credential-derivation * {
animation: none !important;
}
}