Controlled Egress
CSSA small isolated compartment drains its contents into a secure receptacle, with gates closing at both ends to prevent backflow.
- 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
- barslinegeometricminimalui
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-secure-leak" data-pulsar="enclave-secure-leak" viewBox="0 0 160 96"><rect width="52" height="22" x="54" y="16" stroke="currentColor" stroke-width="1.8" opacity=".5" rx="4"></rect><rect width="52" height="22" x="54" y="58" stroke="currentColor" stroke-width="1.8" opacity=".5" rx="4"></rect><line x1="72" x2="72" y1="38" y2="58" stroke="currentColor" stroke-width="1.5" opacity=".4"></line><line x1="88" x2="88" y1="38" y2="58" stroke="currentColor" stroke-width="1.5" opacity=".4"></line><line x1="72" x2="88" y1="42" y2="42" stroke="var(--pulsar-accent, currentColor)" stroke-linecap="round" stroke-width="2" class="enclave-egress-valve-top"></line><line x1="72" x2="88" y1="54" y2="54" stroke="var(--pulsar-accent, currentColor)" stroke-linecap="round" stroke-width="2" class="enclave-egress-valve-bot"></line><circle cx="80" cy="27" r="3" fill="var(--pulsar-accent, currentColor)" class="enclave-egress-packet"></circle></svg>
animation.css
.pulsar-enclave-secure-leak {
display: block;
overflow: visible;
}
.pulsar-enclave-secure-leak .enclave-egress-packet {
animation: enclave-secure-leak-packet-anim 4500ms cubic-bezier(0.2, 0.8, 0.3, 1) infinite;
}
.pulsar-enclave-secure-leak .enclave-egress-valve-top {
animation: enclave-secure-leak-valve-top-anim 4500ms ease infinite;
}
.pulsar-enclave-secure-leak .enclave-egress-valve-bot {
animation: enclave-secure-leak-valve-bot-anim 4500ms ease infinite;
}
@keyframes enclave-secure-leak-packet-anim {
0%,
15% {
transform: translateY(0);
opacity: 0;
}
20% {
opacity: 1;
}
38% {
transform: translateY(21px);
}
65% {
transform: translateY(42px);
opacity: 1;
}
80% {
transform: translateY(42px);
opacity: 0;
}
100% {
transform: translateY(0);
opacity: 0;
}
}
@keyframes enclave-secure-leak-valve-top-anim {
0%,
20% {
transform: scaleX(1);
transform-origin: 72px 42px;
}
26%,
36% {
transform: scaleX(0.1);
transform-origin: 72px 42px;
}
44%,
100% {
transform: scaleX(1);
transform-origin: 72px 42px;
}
}
@keyframes enclave-secure-leak-valve-bot-anim {
0%,
48% {
transform: scaleX(1);
transform-origin: 72px 54px;
}
54%,
66% {
transform: scaleX(0.1);
transform-origin: 72px 54px;
}
74%,
100% {
transform: scaleX(1);
transform-origin: 72px 54px;
}
}
@media (prefers-reduced-motion: reduce) {
.pulsar-enclave-secure-leak * {
animation: none !important;
}
}