Purpose Reveal
CSSA database cylinder outline expands upward, unfolding three outline purpose-limitation tier shelves of varying widths.
- Tier
- CSS
- Dependencies
- None
- Duration
- 4.4 s, loops
- Categories
- Transitions and reveals
- Use cases
- Security and trust, Compliance and audit
- Industries
- SaaS and software, Security and identity
- Style
- Minimal line · light stroke
- Set
- consent
- Tags
- barsgeometricminimallinestagger
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-purpose-reveal" data-pulsar="consent-purpose-reveal" viewBox="0 0 160 96"><ellipse cx="80" cy="72" stroke="currentColor" stroke-width="1.25" opacity=".5" rx="28" ry="6"></ellipse><g class="consent-purpose-shelf-1"><rect width="28" height="8" x="66" y="52" stroke="var(--pulsar-accent, currentColor)" stroke-width="1.25" rx="2"></rect></g><g class="consent-purpose-shelf-2"><rect width="44" height="8" x="58" y="38" stroke="currentColor" stroke-width="1.25" opacity=".6" rx="2"></rect></g><g class="consent-purpose-shelf-3"><rect width="60" height="8" x="50" y="24" stroke="var(--pulsar-accent, currentColor)" stroke-width="1.5" rx="2"></rect></g></svg>
animation.css
.pulsar-consent-purpose-reveal {
display: block;
overflow: visible;
}
.pulsar-consent-purpose-reveal .consent-purpose-shelf-1 {
animation: consent-purpose-reveal-s1-anim 4400ms cubic-bezier(0.2, 1, 0.3, 1) infinite -300ms;
}
.pulsar-consent-purpose-reveal .consent-purpose-shelf-2 {
animation: consent-purpose-reveal-s2-anim 4400ms cubic-bezier(0.2, 1, 0.3, 1) infinite -150ms;
}
.pulsar-consent-purpose-reveal .consent-purpose-shelf-3 {
animation: consent-purpose-reveal-s3-anim 4400ms cubic-bezier(0.2, 1, 0.3, 1) infinite 0ms;
}
@keyframes consent-purpose-reveal-s1-anim {
0%,
15% {
transform: translateY(16px);
opacity: 0;
}
35%,
80% {
transform: translateY(0);
opacity: 1;
}
92%,
100% {
transform: translateY(16px);
opacity: 0;
}
}
@keyframes consent-purpose-reveal-s2-anim {
0%,
20% {
transform: translateY(22px);
opacity: 0;
}
42%,
80% {
transform: translateY(0);
opacity: 1;
}
92%,
100% {
transform: translateY(22px);
opacity: 0;
}
}
@keyframes consent-purpose-reveal-s3-anim {
0%,
25% {
transform: translateY(28px);
opacity: 0;
}
50%,
80% {
transform: translateY(0);
opacity: 1;
}
92%,
100% {
transform: translateY(28px);
opacity: 0;
}
}
@media (prefers-reduced-motion: reduce) {
.pulsar-consent-purpose-reveal .consent-purpose-shelf-1,
.pulsar-consent-purpose-reveal .consent-purpose-shelf-2,
.pulsar-consent-purpose-reveal .consent-purpose-shelf-3 {
animation: none;
}
}