Juices burst out
Joy spilling overSwells softly to 116% and back.
- Duration
- 0.5s
- Repeats
- No
- Easing
- ease-in-out
- Animates
- Scale scale
Show CSS
@keyframes onoma-juwa {
0% { transform: scale(1, 1); }
50% { transform: scale(1.16, 1.16); }
100% { transform: scale(1, 1); }
}
.onoma-juwa {
animation: onoma-juwa 0.5s ease-in-out both;
}
/* Reduced motion: no motion */
@media (prefers-reduced-motion: reduce) {
.onoma-juwa { animation: none; }
}