Mumble
Hesitant characterSquishes 5% wide, then tall, back and forth, forever.
- Duration
- 0.5s
- Repeats
- Yes
- Easing
- ease-in-out
- Animates
- Scale scale
Show CSS
@keyframes onoma-gonyogonyo {
0% { transform: scale(1.05, 0.95); }
100% { transform: scale(0.95, 1.05); }
}
.onoma-gonyogonyo {
animation: onoma-gonyogonyo 0.5s ease-in-out infinite alternate both;
}
/* Reduced motion: no motion */
@media (prefers-reduced-motion: reduce) {
.onoma-gonyogonyo { animation: none; }
}