Tumble head over heels
Playful failureRolls in from 180% to the left and eases to a stop.
- Duration
- 1.2s
- Repeats
- No
- Easing
- cubic-bezier(.2,.7,.3,1)
- Animates
- Position · Rotation translate rotate
Show CSS
@keyframes onoma-suttenkororin {
0% { transform: translate(-180%, 0%) rotate(-206.26deg); }
100% { transform: translate(0%, 0%) rotate(0deg); }
}
.onoma-suttenkororin {
animation: onoma-suttenkororin 1.2s cubic-bezier(.2,.7,.3,1) both;
}
/* Reduced motion: only fade in */
@keyframes onoma-suttenkororin-fade { from { opacity: 0; } to { opacity: 1; } }
@media (prefers-reduced-motion: reduce) {
.onoma-suttenkororin { animation: onoma-suttenkororin-fade 0.2s ease-out both; }
}