Secure Proxy
CSSA request block enters a gateway block and is replaced on the other side by a fresh, clean token block that slides forward.
- 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
- Geometric solid · light stroke
- Set
- enclave
- Tags
- arrowlinegeometricminimalui
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-proxy" data-pulsar="enclave-proxy" viewBox="0 0 160 96"><rect width="28" height="48" x="66" y="24" fill="currentColor" fill-opacity=".08" stroke="currentColor" stroke-width="2" rx="4"></rect><line x1="80" x2="80" y1="24" y2="72" stroke="currentColor" stroke-dasharray="3 3" stroke-width="1.5" opacity=".5"></line><g class="enclave-proxy-in"><rect width="16" height="12" x="24" y="42" stroke="currentColor" stroke-width="1.8" opacity=".6" rx="2.5"></rect></g><g class="enclave-proxy-out"><rect width="16" height="12" x="120" y="42" fill="var(--pulsar-accent, currentColor)" fill-opacity=".25" stroke="var(--pulsar-accent, currentColor)" stroke-width="2" rx="2.5"></rect><circle cx="128" cy="48" r="2" fill="var(--pulsar-accent, currentColor)"></circle></g></svg>
animation.css
.pulsar-enclave-proxy {
display: block;
overflow: visible;
}
.pulsar-enclave-proxy .enclave-proxy-in {
animation: enclave-proxy-in-anim 4500ms cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
.pulsar-enclave-proxy .enclave-proxy-out {
animation: enclave-proxy-out-anim 4500ms cubic-bezier(0.2, 0.8, 0.4, 1) infinite;
}
@keyframes enclave-proxy-in-anim {
0% {
transform: translateX(0);
opacity: 0;
}
15% {
opacity: 1;
}
38% {
transform: translateX(34px);
opacity: 1;
}
44%,
100% {
transform: translateX(34px);
opacity: 0;
}
}
@keyframes enclave-proxy-out-anim {
0%,
45% {
transform: translateX(-34px);
opacity: 0;
}
52% {
opacity: 1;
}
78% {
transform: translateX(0);
opacity: 1;
}
88%,
100% {
transform: translateX(0);
opacity: 0;
}
}
@media (prefers-reduced-motion: reduce) {
.pulsar-enclave-proxy * {
animation: none !important;
}
}