Scatter all at once
Scatter items awayExpands to 160% and rises 0% as it fades away.
- Duration
- 0.6s
- Repeats
- No
- Easing
- ease-out
- Animates
- Position · Scale · Opacity translate scale opacity
Show CSS
@keyframes onoma-bara {
0% { transform: translate(0%, 0%) scale(1, 1); opacity: 1; }
100% { transform: translate(0%, 0%) scale(1.6, 1.6); opacity: 0; }
}
.onoma-bara {
animation: onoma-bara 0.6s ease-out both;
}
/* Reduced motion: only fade out */
@keyframes onoma-bara-fade { from { opacity: 1; } to { opacity: 0; } }
@media (prefers-reduced-motion: reduce) {
.onoma-bara { animation: onoma-bara-fade 0.2s ease-out both; }
}