Disclose Terms
CSSA horizontal line splits and expands vertically, revealing detailed outline clauses that draw into view.
- Tier
- CSS
- Dependencies
- None
- Duration
- 4.2 s, loops
- Categories
- Transitions and reveals
- Use cases
- Onboarding and setup, Security and trust
- Industries
- SaaS and software, Security and identity
- Style
- Minimal line · light stroke
- Set
- consent
- Tags
- linebarsminimalstrokefade
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-disclose" data-pulsar="consent-disclose" viewBox="0 0 160 96"><line x1="40" x2="120" y1="48" y2="48" stroke="currentColor" stroke-width="1.25" class="consent-disclose-top" opacity=".6"></line><line x1="40" x2="120" y1="48" y2="48" stroke="currentColor" stroke-width="1.25" class="consent-disclose-bottom" opacity=".6"></line><g class="consent-disclose-clauses"><line x1="50" x2="110" y1="38" y2="38" stroke="var(--pulsar-accent, currentColor)" stroke-linecap="round" stroke-width="1.5"></line><line x1="50" x2="100" y1="48" y2="48" stroke="currentColor" stroke-linecap="round" stroke-width="1.25" opacity=".5"></line><line x1="50" x2="92" y1="58" y2="58" stroke="currentColor" stroke-linecap="round" stroke-width="1.25" opacity=".5"></line></g></svg>
animation.css
.pulsar-consent-disclose {
display: block;
overflow: visible;
}
.pulsar-consent-disclose .consent-disclose-top {
animation: consent-disclose-top-anim 4200ms cubic-bezier(0.2, 1, 0.3, 1) infinite;
}
.pulsar-consent-disclose .consent-disclose-bottom {
animation: consent-disclose-bottom-anim 4200ms cubic-bezier(0.2, 1, 0.3, 1) infinite;
}
.pulsar-consent-disclose .consent-disclose-clauses {
animation: consent-disclose-clauses-anim 4200ms ease infinite;
}
@keyframes consent-disclose-top-anim {
0%,
15% {
transform: translateY(0);
}
40%,
80% {
transform: translateY(-24px);
}
92%,
100% {
transform: translateY(0);
}
}
@keyframes consent-disclose-bottom-anim {
0%,
15% {
transform: translateY(0);
}
40%,
80% {
transform: translateY(24px);
}
92%,
100% {
transform: translateY(0);
}
}
@keyframes consent-disclose-clauses-anim {
0%,
25% {
opacity: 0;
transform: scaleY(0.5);
}
45%,
80% {
opacity: 1;
transform: scaleY(1);
}
90%,
100% {
opacity: 0;
transform: scaleY(0.5);
}
}
@media (prefers-reduced-motion: reduce) {
.pulsar-consent-disclose .consent-disclose-top,
.pulsar-consent-disclose .consent-disclose-bottom,
.pulsar-consent-disclose .consent-disclose-clauses {
animation: none;
}
}