Cookie Accept
CSSA cluster of telemetry nodes collapses inward, resolving into an accepted consent toggle with an accent check indicator.
- Tier
- CSS
- Dependencies
- None
- Duration
- 4.2 s, loops
- Categories
- Transitions and reveals
- Use cases
- Success and confirmation, Security and trust
- Industries
- Security and identity, Cross-industry
- Style
- Minimal line · light stroke
- Set
- consent
- Tags
- uidotsminimallinepulse
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-cookie-accept" data-pulsar="consent-cookie-accept" viewBox="0 0 160 96"><circle cx="54" cy="34" r="2.5" stroke="currentColor" stroke-width="1.25" class="consent-cookie-node-1"></circle><circle cx="106" cy="34" r="2.5" stroke="currentColor" stroke-width="1.25" class="consent-cookie-node-2"></circle><circle cx="54" cy="62" r="2.5" stroke="currentColor" stroke-width="1.25" class="consent-cookie-node-3"></circle><circle cx="106" cy="62" r="2.5" stroke="currentColor" stroke-width="1.25" class="consent-cookie-node-4"></circle><g class="consent-cookie-toggle"><rect width="48" height="28" x="56" y="34" stroke="var(--pulsar-accent, currentColor)" stroke-width="1.5" rx="14"></rect><circle cx="88" cy="48" r="9" stroke="var(--pulsar-accent, currentColor)" stroke-width="1.25"></circle><path stroke="var(--pulsar-accent, currentColor)" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.25" d="m85 48 2.5 2.5L92 46"></path></g></svg>
animation.css
.pulsar-consent-cookie-accept {
display: block;
overflow: visible;
}
.pulsar-consent-cookie-accept .consent-cookie-node-1 {
animation: consent-cookie-accept-n1-anim 4200ms cubic-bezier(0.2, 1, 0.3, 1) infinite;
}
.pulsar-consent-cookie-accept .consent-cookie-node-2 {
animation: consent-cookie-accept-n2-anim 4200ms cubic-bezier(0.2, 1, 0.3, 1) infinite;
}
.pulsar-consent-cookie-accept .consent-cookie-node-3 {
animation: consent-cookie-accept-n3-anim 4200ms cubic-bezier(0.2, 1, 0.3, 1) infinite;
}
.pulsar-consent-cookie-accept .consent-cookie-node-4 {
animation: consent-cookie-accept-n4-anim 4200ms cubic-bezier(0.2, 1, 0.3, 1) infinite;
}
.pulsar-consent-cookie-accept .consent-cookie-toggle {
animation: consent-cookie-accept-toggle-anim 4200ms cubic-bezier(0.2, 1, 0.3, 1) infinite;
transform-origin: 80px 48px;
}
@keyframes consent-cookie-accept-n1-anim {
0%,
15% {
transform: translate(0, 0);
opacity: 0.8;
}
40%,
80% {
transform: translate(26px, 14px);
opacity: 0;
}
92%,
100% {
transform: translate(0, 0);
opacity: 0.8;
}
}
@keyframes consent-cookie-accept-n2-anim {
0%,
15% {
transform: translate(0, 0);
opacity: 0.8;
}
40%,
80% {
transform: translate(-26px, 14px);
opacity: 0;
}
92%,
100% {
transform: translate(0, 0);
opacity: 0.8;
}
}
@keyframes consent-cookie-accept-n3-anim {
0%,
15% {
transform: translate(0, 0);
opacity: 0.8;
}
40%,
80% {
transform: translate(26px, -14px);
opacity: 0;
}
92%,
100% {
transform: translate(0, 0);
opacity: 0.8;
}
}
@keyframes consent-cookie-accept-n4-anim {
0%,
15% {
transform: translate(0, 0);
opacity: 0.8;
}
40%,
80% {
transform: translate(-26px, -14px);
opacity: 0;
}
92%,
100% {
transform: translate(0, 0);
opacity: 0.8;
}
}
@keyframes consent-cookie-accept-toggle-anim {
0%,
20% {
transform: scale(0.6);
opacity: 0;
}
45%,
80% {
transform: scale(1);
opacity: 1;
}
92%,
100% {
transform: scale(0.6);
opacity: 0;
}
}
@media (prefers-reduced-motion: reduce) {
.pulsar-consent-cookie-accept .consent-cookie-node-1,
.pulsar-consent-cookie-accept .consent-cookie-node-2,
.pulsar-consent-cookie-accept .consent-cookie-node-3,
.pulsar-consent-cookie-accept .consent-cookie-node-4,
.pulsar-consent-cookie-accept .consent-cookie-toggle {
animation: none;
}
}