Scatter and fall lightly
Discard an itemSways 2 times (width 20%, tilt up to 15°) while falling 150% and fading out.
- Duration
- 0.8s
- Repeats
- No
- Easing
- ease-in-out
- Animates
- Position · Rotation · Opacity translate rotate opacity
Show CSS
@keyframes onoma-para {
0% { transform: translate(0%, 0%) rotate(0deg); opacity: 1; animation-timing-function: ease-in-out; }
50% { transform: translate(17.33%, 60.92%) rotate(13deg); opacity: 0.6; animation-timing-function: ease-in-out; }
100% { transform: translate(0%, 150%) rotate(-4.5deg); opacity: 0; animation-timing-function: ease-in-out; }
}
.onoma-para {
animation: onoma-para 0.8s ease-in-out both;
}
/* Reduced motion: only fade out */
@keyframes onoma-para-fade { from { opacity: 1; } to { opacity: 0; } }
@media (prefers-reduced-motion: reduce) {
.onoma-para { animation: onoma-para-fade 0.2s ease-out both; }
}