Grant Reveal
CSSA collapsed padlock icon unfolds horizontally, revealing an open, signed document structure within.
- Tier
- CSS
- Dependencies
- None
- Duration
- 4.2 s, loops
- Categories
- Transitions and reveals
- Use cases
- Success and confirmation, Security and trust
- Industries
- SaaS and software, Security and identity
- Style
- Minimal line · light stroke
- Set
- consent
- Tags
- minimalstrokelinegeometricwipe
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-consent-grant-reveal" data-pulsar="consent-grant-reveal" viewBox="0 0 160 96"><g class="consent-grant-doc"><rect width="44" height="48" x="58" y="24" stroke="var(--pulsar-accent, currentColor)" stroke-width="1.5" rx="4"></rect><line x1="66" x2="94" y1="36" y2="36" stroke="var(--pulsar-accent, currentColor)" stroke-linecap="round" stroke-width="1.25"></line><line x1="66" x2="86" y1="44" y2="44" stroke="var(--pulsar-accent, currentColor)" stroke-linecap="round" stroke-width="1.25"></line><path stroke="var(--pulsar-accent, currentColor)" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5" d="m74 54 4 4 8-8"></path></g><g class="consent-grant-panel-l"><path stroke="currentColor" stroke-width="1.25" d="M80 40H60q-6 0-6 6v20q0 6 6 6h20Z"></path><path stroke="currentColor" stroke-width="1.25" d="M64 40v-8c0-6 8-8 16-8"></path></g><g class="consent-grant-panel-r"><path stroke="currentColor" stroke-width="1.25" d="M80 40h20q6 0 6 6v20q0 6-6 6H80Z"></path><path stroke="currentColor" stroke-width="1.25" d="M96 40v-8c0-6-8-8-16-8"></path></g></svg>
animation.css
.pulsar-consent-grant-reveal {
display: block;
overflow: visible;
}
.pulsar-consent-grant-reveal .consent-grant-doc {
animation: consent-grant-reveal-doc-anim 4200ms cubic-bezier(0.2, 1, 0.3, 1) infinite;
transform-origin: 80px 48px;
}
.pulsar-consent-grant-reveal .consent-grant-panel-l {
animation: consent-grant-reveal-panel-l-anim 4200ms cubic-bezier(0.2, 1, 0.3, 1) infinite;
}
.pulsar-consent-grant-reveal .consent-grant-panel-r {
animation: consent-grant-reveal-panel-r-anim 4200ms cubic-bezier(0.2, 1, 0.3, 1) infinite;
}
@keyframes consent-grant-reveal-doc-anim {
0%,
15% {
transform: scale(0.6);
opacity: 0;
}
40%,
80% {
transform: scale(1);
opacity: 1;
}
92%,
100% {
transform: scale(0.6);
opacity: 0;
}
}
@keyframes consent-grant-reveal-panel-l-anim {
0%,
15% {
transform: translateX(0);
opacity: 0.9;
}
40%,
80% {
transform: translateX(-24px);
opacity: 0.3;
}
92%,
100% {
transform: translateX(0);
opacity: 0.9;
}
}
@keyframes consent-grant-reveal-panel-r-anim {
0%,
15% {
transform: translateX(0);
opacity: 0.9;
}
40%,
80% {
transform: translateX(24px);
opacity: 0.3;
}
92%,
100% {
transform: translateX(0);
opacity: 0.9;
}
}
@media (prefers-reduced-motion: reduce) {
.pulsar-consent-grant-reveal .consent-grant-doc,
.pulsar-consent-grant-reveal .consent-grant-panel-l,
.pulsar-consent-grant-reveal .consent-grant-panel-r {
animation: none;
}
}