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