One heavy slosh
Touching something wateryStretches 14% wide, then wobbles a few times back to shape.
- Duration
- 0.9s
- Repeats
- No
- Easing
- ease-in-out
- Animates
- Scale scale
Show CSS
@keyframes onoma-tapun {
0% { transform: scale(1, 1); }
25% { transform: scale(1.14, 0.87); }
45% { transform: scale(0.92, 1.08); }
65% { transform: scale(1.04, 0.96); }
82% { transform: scale(0.99, 1.01); }
100% { transform: scale(1, 1); }
}
.onoma-tapun {
animation: onoma-tapun 0.9s ease-in-out both;
}
/* Reduced motion: no motion */
@media (prefers-reduced-motion: reduce) {
.onoma-tapun { animation: none; }
}