Refreshingly satisfying
Satisfying completionBursts out to 160% and vanishes.
- Duration
- 0.36s
- Repeats
- No
- Easing
- ease-out
- Animates
- Scale · Opacity scale opacity
Show CSS
@keyframes onoma-suka {
0% { transform: scale(1, 1); opacity: 1; }
35% { transform: scale(1.3, 1.3); opacity: 1; }
100% { transform: scale(1.6, 1.6); opacity: 0; }
}
.onoma-suka {
animation: onoma-suka 0.36s ease-out both;
}
/* Reduced motion: only fade out */
@keyframes onoma-suka-fade { from { opacity: 1; } to { opacity: 0; } }
@media (prefers-reduced-motion: reduce) {
.onoma-suka { animation: onoma-suka-fade 0.2s ease-out both; }
}