Challenge
CSSA multi-part cryptographic puzzle ring splits into sliding segments that reorder and snap together.
- Tier
- CSS
- Dependencies
- None
- Duration
- 4.2 s, loops
- Categories
- Data and progress
- Use cases
- Onboarding and setup, Security and trust
- Industries
- SaaS and software, Security and identity
- Style
- Technical · light stroke
- Set
- credential
- Tags
- ringgeometricminimalrotateui
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-challenge" data-pulsar="credential-challenge" viewBox="0 0 160 96"><path stroke="currentColor" stroke-linecap="round" stroke-width="2.5" d="M80 20a28 28 0 0 1 28 28" class="credential-challenge-seg-1"></path><path stroke="var(--pulsar-accent, currentColor)" stroke-linecap="round" stroke-width="2.5" d="M108 48a28 28 0 0 1-28 28" class="credential-challenge-seg-2"></path><path stroke="currentColor" stroke-linecap="round" stroke-width="2.5" d="M80 76a28 28 0 0 1-28-28" class="credential-challenge-seg-3"></path><path stroke="var(--pulsar-accent, currentColor)" stroke-linecap="round" stroke-width="2.5" d="M52 48a28 28 0 0 1 28-28" class="credential-challenge-seg-4"></path><circle cx="80" cy="48" r="4" fill="var(--pulsar-accent, currentColor)" class="credential-challenge-core"></circle></svg>
animation.css
.pulsar-credential-challenge {
display: block;
overflow: visible;
}
.pulsar-credential-challenge .credential-challenge-seg-1 {
transform-origin: 80px 48px;
animation: credential-challenge-s1-anim 4200ms cubic-bezier(0.2, 1, 0.3, 1) infinite;
}
.pulsar-credential-challenge .credential-challenge-seg-2 {
transform-origin: 80px 48px;
animation: credential-challenge-s2-anim 4200ms cubic-bezier(0.2, 1, 0.3, 1) infinite;
}
.pulsar-credential-challenge .credential-challenge-seg-3 {
transform-origin: 80px 48px;
animation: credential-challenge-s3-anim 4200ms cubic-bezier(0.2, 1, 0.3, 1) infinite;
}
.pulsar-credential-challenge .credential-challenge-seg-4 {
transform-origin: 80px 48px;
animation: credential-challenge-s4-anim 4200ms cubic-bezier(0.2, 1, 0.3, 1) infinite;
}
.pulsar-credential-challenge .credential-challenge-core {
transform-origin: 80px 48px;
animation: credential-challenge-core-anim 4200ms ease infinite;
}
@keyframes credential-challenge-s1-anim {
0%,
15% {
transform: translate(6px, -6px);
}
38%,
78% {
transform: translate(0, 0);
}
90%,
100% {
transform: translate(6px, -6px);
}
}
@keyframes credential-challenge-s2-anim {
0%,
15% {
transform: translate(6px, 6px);
}
38%,
78% {
transform: translate(0, 0);
}
90%,
100% {
transform: translate(6px, 6px);
}
}
@keyframes credential-challenge-s3-anim {
0%,
15% {
transform: translate(-6px, 6px);
}
38%,
78% {
transform: translate(0, 0);
}
90%,
100% {
transform: translate(-6px, 6px);
}
}
@keyframes credential-challenge-s4-anim {
0%,
15% {
transform: translate(-6px, -6px);
}
38%,
78% {
transform: translate(0, 0);
}
90%,
100% {
transform: translate(-6px, -6px);
}
}
@keyframes credential-challenge-core-anim {
0%,
30% {
transform: scale(0.4);
opacity: 0.3;
}
42%,
78% {
transform: scale(1.2);
opacity: 1;
}
90%,
100% {
transform: scale(0.4);
opacity: 0.3;
}
}
@media (prefers-reduced-motion: reduce) {
.pulsar-credential-challenge * {
animation: none !important;
}
}