Attest
CSSA secure document block inside a chamber is scanned by a vertical line, lighting up its boundaries and printing a check mark.
- Tier
- CSS
- Dependencies
- None
- Duration
- 4.2 s, loops
- Categories
- Data and progress
- Use cases
- Security and trust, Compliance and audit
- Industries
- Security and identity, Cross-industry
- Style
- Geometric solid · light stroke
- Set
- enclave
- Tags
- barsglowgeometricminimalui
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-attest" data-pulsar="enclave-attest" viewBox="0 0 160 96"><g stroke="currentColor" stroke-width="1.5" opacity=".4"><rect width="88" height="14" x="36" y="26" rx="3"></rect><line x1="58" x2="58" y1="26" y2="40"></line><line x1="80" x2="80" y1="26" y2="40"></line><line x1="102" x2="102" y1="26" y2="40"></line></g><g stroke="currentColor" stroke-width="1.5" opacity=".6"><rect width="88" height="14" x="36" y="56" rx="3"></rect><line x1="58" x2="58" y1="56" y2="70"></line><line x1="80" x2="80" y1="56" y2="70"></line><line x1="102" x2="102" y1="56" y2="70"></line></g><line x1="36" x2="36" y1="24" y2="72" stroke="var(--pulsar-accent, currentColor)" stroke-linecap="round" stroke-width="2.5" class="enclave-attest-beam"></line><g class="enclave-attest-match"><circle cx="124" cy="48" r="6" fill="var(--pulsar-accent, currentColor)"></circle><path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5" d="m121 48 2 2 4-4"></path></g></svg>
animation.css
.pulsar-enclave-attest {
display: block;
overflow: visible;
}
.pulsar-enclave-attest .enclave-attest-beam {
animation: enclave-attest-beam-anim 4200ms cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
.pulsar-enclave-attest .enclave-attest-match {
transform-origin: 124px 48px;
animation: enclave-attest-match-anim 4200ms ease infinite;
}
@keyframes enclave-attest-beam-anim {
0%,
15% {
transform: translateX(0);
opacity: 0;
}
20% {
opacity: 1;
}
50% {
transform: translateX(88px);
opacity: 1;
}
58% {
transform: translateX(88px);
opacity: 0;
}
100% {
transform: translateX(0);
opacity: 0;
}
}
@keyframes enclave-attest-match-anim {
0%,
48% {
transform: scale(0);
opacity: 0;
}
56%,
82% {
transform: scale(1);
opacity: 1;
}
92%,
100% {
transform: scale(0);
opacity: 0;
}
}
@media (prefers-reduced-motion: reduce) {
.pulsar-enclave-attest * {
animation: none !important;
}
}