Escrow
CSSA key icon is enclosed by two semi-circular protective gates that slide shut and interlock around it.
- Tier
- CSS
- Dependencies
- None
- Duration
- 4.2 s, loops
- Categories
- Data and progress
- Use cases
- Security and trust, Workflow and approvals
- Industries
- SaaS and software, Security and identity
- Style
- Technical · light stroke
- Set
- credential
- Tags
- barsgeometricminimaluistroke
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-escrow" data-pulsar="credential-escrow" viewBox="0 0 160 96"><g class="credential-escrow-key"><rect width="16" height="16" x="72" y="40" fill="var(--pulsar-accent, currentColor)" fill-opacity=".25" stroke="var(--pulsar-accent, currentColor)" stroke-width="2" rx="3"></rect><circle cx="80" cy="48" r="2.5" fill="var(--pulsar-accent, currentColor)"></circle></g><path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2.5" d="M46 28h30v40H46" class="credential-escrow-gate-l"></path><path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2.5" d="M114 28H84v40h30" class="credential-escrow-gate-r"></path><circle cx="80" cy="48" r="22" stroke="var(--pulsar-accent, currentColor)" stroke-width="1.5" class="credential-escrow-seal"></circle></svg>
animation.css
.pulsar-credential-escrow {
display: block;
overflow: visible;
}
.pulsar-credential-escrow .credential-escrow-gate-l {
animation: credential-escrow-gl-anim 4200ms cubic-bezier(0.2, 1, 0.3, 1) infinite;
}
.pulsar-credential-escrow .credential-escrow-gate-r {
animation: credential-escrow-gr-anim 4200ms cubic-bezier(0.2, 1, 0.3, 1) infinite;
}
.pulsar-credential-escrow .credential-escrow-key {
transform-origin: 80px 48px;
animation: credential-escrow-key-anim 4200ms ease infinite;
}
.pulsar-credential-escrow .credential-escrow-seal {
transform-origin: 80px 48px;
animation: credential-escrow-seal-anim 4200ms ease infinite;
}
@keyframes credential-escrow-gl-anim {
0%,
15% {
transform: translateX(-16px);
}
38%,
78% {
transform: translateX(0);
}
92%,
100% {
transform: translateX(-16px);
}
}
@keyframes credential-escrow-gr-anim {
0%,
15% {
transform: translateX(16px);
}
38%,
78% {
transform: translateX(0);
}
92%,
100% {
transform: translateX(16px);
}
}
@keyframes credential-escrow-key-anim {
0%,
25% {
opacity: 0.5;
transform: scale(0.85);
}
42%,
78% {
opacity: 1;
transform: scale(1);
}
92%,
100% {
opacity: 0.5;
transform: scale(0.85);
}
}
@keyframes credential-escrow-seal-anim {
0%,
36% {
transform: scale(0.6);
opacity: 0;
}
46% {
opacity: 0.9;
}
65% {
transform: scale(1.4);
opacity: 0;
}
100% {
transform: scale(1.4);
opacity: 0;
}
}
@media (prefers-reduced-motion: reduce) {
.pulsar-credential-escrow * {
animation: none !important;
}
}