Privacy Wipe
CSSA vertical sweep line moves from left to right, clearing all personal identifiers and leaving only anonymized blocks in its wake.
- Tier
- CSS
- Dependencies
- None
- Duration
- 4.2 s, loops
- Categories
- Transitions and reveals
- Use cases
- Security and trust, Compliance and audit
- Industries
- Security and identity, Cross-industry
- Style
- Minimal line · light stroke
- Set
- consent
- Tags
- wipelineminimaluistroke
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-privacy-wipe" data-pulsar="consent-privacy-wipe" viewBox="0 0 160 96"><rect width="88" height="56" x="36" y="20" stroke="currentColor" stroke-width="1.25" opacity=".3" rx="6"></rect><g class="consent-privacy-ident"><circle cx="56" cy="38" r="8" stroke="currentColor" stroke-width="1.25"></circle><line x1="72" x2="110" y1="34" y2="34" stroke="currentColor" stroke-linecap="round" stroke-width="1.25"></line><line x1="72" x2="98" y1="42" y2="42" stroke="currentColor" stroke-linecap="round" stroke-width="1.25"></line></g><g class="consent-privacy-anon"><rect width="16" height="12" x="48" y="32" stroke="var(--pulsar-accent, currentColor)" stroke-dasharray="2 2" rx="2"></rect><line x1="72" x2="110" y1="34" y2="34" stroke="var(--pulsar-accent, currentColor)" stroke-dasharray="3 3" stroke-width="1.25"></line><line x1="72" x2="98" y1="42" y2="42" stroke="var(--pulsar-accent, currentColor)" stroke-dasharray="3 3" stroke-width="1.25"></line></g><line x1="40" x2="40" y1="16" y2="80" stroke="var(--pulsar-accent, currentColor)" stroke-width="1.5" class="consent-privacy-beam"></line></svg>
animation.css
.pulsar-consent-privacy-wipe {
display: block;
overflow: visible;
}
.pulsar-consent-privacy-wipe .consent-privacy-beam {
animation: consent-privacy-wipe-beam-anim 4200ms ease-in-out infinite;
}
.pulsar-consent-privacy-wipe .consent-privacy-ident {
animation: consent-privacy-wipe-ident-anim 4200ms ease infinite;
}
.pulsar-consent-privacy-wipe .consent-privacy-anon {
animation: consent-privacy-wipe-anon-anim 4200ms ease infinite;
}
@keyframes consent-privacy-wipe-beam-anim {
0% {
transform: translateX(0);
opacity: 0;
}
15% {
opacity: 1;
}
85% {
opacity: 1;
}
100% {
transform: translateX(80px);
opacity: 0;
}
}
@keyframes consent-privacy-wipe-ident-anim {
0%,
25% {
opacity: 0.8;
}
50%,
80% {
opacity: 0;
}
95%,
100% {
opacity: 0.8;
}
}
@keyframes consent-privacy-wipe-anon-anim {
0%,
25% {
opacity: 0;
}
50%,
80% {
opacity: 1;
}
95%,
100% {
opacity: 0;
}
}
@media (prefers-reduced-motion: reduce) {
.pulsar-consent-privacy-wipe .consent-privacy-beam,
.pulsar-consent-privacy-wipe .consent-privacy-ident,
.pulsar-consent-privacy-wipe .consent-privacy-anon {
animation: none;
}
}