Decrypt
CSSA scrambled pattern of mosaic square tiles within a circular frame rotates, aligning into a neat grid of concentric rings.
- Tier
- CSS
- Dependencies
- None
- Duration
- 4.5 s, loops
- Categories
- Data and progress
- Use cases
- Sync and integration, Security and trust
- Industries
- SaaS and software, Security and identity
- Style
- Geometric solid · light stroke
- Set
- enclave
- Tags
- rotategeometriccircleminimalgrid
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-enclave-decrypt" data-pulsar="enclave-decrypt" viewBox="0 0 160 96"><circle cx="80" cy="48" r="28" stroke="currentColor" stroke-width="2" opacity=".4"></circle><g class="enclave-decrypt-rotor"><circle cx="80" cy="48" r="18" stroke="currentColor" stroke-dasharray="8 6" stroke-width="1.5" opacity=".6"></circle><line x1="80" x2="80" y1="30" y2="66" stroke="currentColor" stroke-width="1.5" opacity=".4"></line><line x1="62" x2="98" y1="48" y2="48" stroke="currentColor" stroke-width="1.5" opacity=".4"></line></g><g class="enclave-decrypt-clear"><circle cx="80" cy="48" r="10" stroke="var(--pulsar-accent, currentColor)" stroke-width="2"></circle><circle cx="80" cy="48" r="3" fill="var(--pulsar-accent, currentColor)"></circle><line x1="80" x2="80" y1="20" y2="24" stroke="var(--pulsar-accent, currentColor)" stroke-linecap="round" stroke-width="2"></line><line x1="80" x2="80" y1="72" y2="76" stroke="var(--pulsar-accent, currentColor)" stroke-linecap="round" stroke-width="2"></line><line x1="52" x2="56" y1="48" y2="48" stroke="var(--pulsar-accent, currentColor)" stroke-linecap="round" stroke-width="2"></line><line x1="104" x2="108" y1="48" y2="48" stroke="var(--pulsar-accent, currentColor)" stroke-linecap="round" stroke-width="2"></line></g></svg>
animation.css
.pulsar-enclave-decrypt {
display: block;
overflow: visible;
}
.pulsar-enclave-decrypt .enclave-decrypt-rotor {
transform-origin: 80px 48px;
animation: enclave-decrypt-rotor-anim 4500ms cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
.pulsar-enclave-decrypt .enclave-decrypt-clear {
transform-origin: 80px 48px;
animation: enclave-decrypt-clear-anim 4500ms ease infinite;
}
@keyframes enclave-decrypt-rotor-anim {
0% {
transform: rotate(0deg);
}
35% {
transform: rotate(135deg);
}
80% {
transform: rotate(180deg);
}
100% {
transform: rotate(360deg);
}
}
@keyframes enclave-decrypt-clear-anim {
0%,
30% {
transform: scale(0.6);
opacity: 0.2;
}
42%,
80% {
transform: scale(1);
opacity: 1;
}
92%,
100% {
transform: scale(0.6);
opacity: 0.2;
}
}
@media (prefers-reduced-motion: reduce) {
.pulsar-enclave-decrypt * {
animation: none !important;
}
}