Slip and fall off
Item comes looseTips 12° while falling 120% and fading out.
- Duration
- 0.56s
- Repeats
- No
- Easing
- cubic-bezier(.55,0,1,.45)
- Animates
- Position · Rotation · Opacity translate rotate opacity
Show CSS
@keyframes onoma-poro {
0% { transform: translate(0%, 0%) rotate(0deg); opacity: 1; }
75% { transform: translate(0%, 90%) rotate(9deg); opacity: 1; }
100% { transform: translate(0%, 120%) rotate(12deg); opacity: 0; }
}
.onoma-poro {
animation: onoma-poro 0.56s cubic-bezier(.55,0,1,.45) both;
}
/* Reduced motion: only fade out */
@keyframes onoma-poro-fade { from { opacity: 1; } to { opacity: 0; } }
@media (prefers-reduced-motion: reduce) {
.onoma-poro { animation: onoma-poro-fade 0.2s ease-out both; }
}