Key Custody
CSSTwo distinct lock halves slide together from the left and right, interlocking to enclose a central glowing square.
- Tier
- CSS
- Dependencies
- None
- Duration
- 4.2 s, loops
- Categories
- Data and progress
- Use cases
- Success and confirmation, Security and trust
- Industries
- Security and identity, Cross-industry
- Style
- Geometric solid · light stroke
- Set
- enclave
- Tags
- geometricglowdotspulseminimal
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-key-custody" data-pulsar="enclave-key-custody" viewBox="0 0 160 96"><circle cx="80" cy="22" r="3" stroke="currentColor" stroke-width="1.5" opacity=".5"></circle><circle cx="50" cy="68" r="3" stroke="currentColor" stroke-width="1.5" opacity=".5"></circle><circle cx="110" cy="68" r="3" stroke="currentColor" stroke-width="1.5" opacity=".5"></circle><g class="enclave-custody-shard-1"><line x1="80" x2="80" y1="25" y2="44" stroke="var(--pulsar-accent, currentColor)" stroke-linecap="round" stroke-width="2"></line><circle cx="80" cy="25" r="2" fill="var(--pulsar-accent, currentColor)"></circle></g><g class="enclave-custody-shard-2"><line x1="52" x2="76" y1="66" y2="50" stroke="var(--pulsar-accent, currentColor)" stroke-linecap="round" stroke-width="2"></line><circle cx="52" cy="66" r="2" fill="var(--pulsar-accent, currentColor)"></circle></g><g class="enclave-custody-shard-3"><line x1="108" x2="84" y1="66" y2="50" stroke="var(--pulsar-accent, currentColor)" stroke-linecap="round" stroke-width="2"></line><circle cx="108" cy="66" r="2" fill="var(--pulsar-accent, currentColor)"></circle></g><g class="enclave-custody-core"><circle cx="80" cy="48" r="6" fill="var(--pulsar-accent, currentColor)"></circle><circle cx="80" cy="48" r="14" stroke="var(--pulsar-accent, currentColor)" stroke-width="1.5" class="enclave-custody-halo"></circle></g></svg>
animation.css
.pulsar-enclave-key-custody {
display: block;
overflow: visible;
}
.pulsar-enclave-key-custody .enclave-custody-shard-1 {
animation: enclave-key-custody-s1-anim 4200ms cubic-bezier(0.2, 1, 0.3, 1) infinite;
}
.pulsar-enclave-key-custody .enclave-custody-shard-2 {
animation: enclave-key-custody-s2-anim 4200ms cubic-bezier(0.2, 1, 0.3, 1) infinite;
}
.pulsar-enclave-key-custody .enclave-custody-shard-3 {
animation: enclave-key-custody-s3-anim 4200ms cubic-bezier(0.2, 1, 0.3, 1) infinite;
}
.pulsar-enclave-key-custody .enclave-custody-core {
transform-origin: 80px 48px;
animation: enclave-key-custody-core-anim 4200ms ease infinite;
}
.pulsar-enclave-key-custody .enclave-custody-halo {
transform-origin: 80px 48px;
animation: enclave-key-custody-halo-anim 4200ms ease infinite;
}
@keyframes enclave-key-custody-s1-anim {
0%,
15% {
transform: translateY(-8px);
opacity: 0.3;
}
38%,
78% {
transform: translateY(0);
opacity: 1;
}
90%,
100% {
transform: translateY(-8px);
opacity: 0.3;
}
}
@keyframes enclave-key-custody-s2-anim {
0%,
15% {
transform: translate(-8px, 6px);
opacity: 0.3;
}
38%,
78% {
transform: translate(0, 0);
opacity: 1;
}
90%,
100% {
transform: translate(-8px, 6px);
opacity: 0.3;
}
}
@keyframes enclave-key-custody-s3-anim {
0%,
15% {
transform: translate(8px, 6px);
opacity: 0.3;
}
38%,
78% {
transform: translate(0, 0);
opacity: 1;
}
90%,
100% {
transform: translate(8px, 6px);
opacity: 0.3;
}
}
@keyframes enclave-key-custody-core-anim {
0%,
32% {
transform: scale(0);
opacity: 0;
}
42%,
78% {
transform: scale(1);
opacity: 1;
}
90%,
100% {
transform: scale(0);
opacity: 0;
}
}
@keyframes enclave-key-custody-halo-anim {
0%,
38% {
transform: scale(0.5);
opacity: 0;
}
48% {
opacity: 0.9;
}
68% {
transform: scale(1.6);
opacity: 0;
}
100% {
transform: scale(1.6);
opacity: 0;
}
}
@media (prefers-reduced-motion: reduce) {
.pulsar-enclave-key-custody * {
animation: none !important;
}
}