Slink away dejected
Withdraw and leaveWinds up 0%, then dashes 100% to the right and vanishes.
- Duration
- 1s
- Repeats
- No
- Easing
- ease-in
- Animates
- Position · Skew X · Opacity translate skewX opacity
Show CSS
@keyframes onoma-sugosugo {
0% { transform: translate(0%, 0%) skewX(0deg); opacity: 1; }
30% { transform: translate(0%, 0%) skewX(0deg); opacity: 1; animation-timing-function: cubic-bezier(.6,0,.9,.4); }
85% { transform: translate(78.57%, 0%) skewX(0deg); opacity: 1; }
100% { transform: translate(100%, 0%) skewX(0deg); opacity: 0; }
}
.onoma-sugosugo {
animation: onoma-sugosugo 1s ease-in both;
}
/* Reduced motion: only fade out */
@keyframes onoma-sugosugo-fade { from { opacity: 1; } to { opacity: 0; } }
@media (prefers-reduced-motion: reduce) {
.onoma-sugosugo { animation: onoma-sugosugo-fade 0.2s ease-out both; }
}