Withdraw
CSSA check icon turns ninety degrees, transforming into a cross mark that then slides downwards and out of frame.
- Tier
- CSS
- Dependencies
- None
- Duration
- 4.2 s, loops
- Categories
- Transitions and reveals
- Use cases
- Security and trust, Workflow and approvals
- Industries
- SaaS and software, Security and identity
- Style
- Minimal line · light stroke
- Set
- consent
- Tags
- rotatearrowminimallinestroke
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-withdraw" data-pulsar="consent-withdraw" viewBox="0 0 160 96"><circle cx="80" cy="48" r="24" stroke="currentColor" stroke-width="1.25" opacity=".3"></circle><g class="consent-withdraw-symbol"><line x1="72" x2="88" y1="48" y2="48" stroke="var(--pulsar-accent, currentColor)" stroke-linecap="round" stroke-width="1.5" class="consent-withdraw-arm-1"></line><line x1="80" x2="80" y1="40" y2="56" stroke="var(--pulsar-accent, currentColor)" stroke-linecap="round" stroke-width="1.5" class="consent-withdraw-arm-2"></line></g></svg>
animation.css
.pulsar-consent-withdraw {
display: block;
overflow: visible;
}
.pulsar-consent-withdraw .consent-withdraw-symbol {
animation: consent-withdraw-symbol-anim 4200ms cubic-bezier(0.2, 1, 0.3, 1) infinite;
transform-origin: 80px 48px;
}
@keyframes consent-withdraw-symbol-anim {
0%,
20% {
transform: rotate(0deg) translateY(0);
opacity: 1;
}
40%,
65% {
transform: rotate(45deg) translateY(0);
opacity: 1;
}
80%,
90% {
transform: rotate(45deg) translateY(24px);
opacity: 0;
}
98%,
100% {
transform: rotate(0deg) translateY(0);
opacity: 1;
}
}
@media (prefers-reduced-motion: reduce) {
.pulsar-consent-withdraw .consent-withdraw-symbol {
animation: none;
}
}