Slip and fall off
Drop an item awayTips 30° while falling 140% and fading out.
- Duration
- 0.46s
- Repeats
- No
- Easing
- cubic-bezier(.55,0,1,.45)
- Animates
- Position · Rotation · Opacity translate rotate opacity
Show CSS
@keyframes onoma-tsuru {
0% { transform: translate(0%, 0%) rotate(0deg); opacity: 1; }
75% { transform: translate(0%, 105%) rotate(22.5deg); opacity: 1; }
100% { transform: translate(0%, 140%) rotate(30deg); opacity: 0; }
}
.onoma-tsuru {
animation: onoma-tsuru 0.46s cubic-bezier(.55,0,1,.45) both;
}
/* Reduced motion: only fade out */
@keyframes onoma-tsuru-fade { from { opacity: 1; } to { opacity: 0; } }
@media (prefers-reduced-motion: reduce) {
.onoma-tsuru { animation: onoma-tsuru-fade 0.2s ease-out both; }
}