Mouth opens and shuts
Eating characterSquishes 18% wide, then tall, back and forth, forever.
- Duration
- 0.4s
- Repeats
- Yes
- Easing
- ease-in-out
- Animates
- Scale scale
Show CSS
@keyframes onoma-pakupaku {
0% { transform: scale(1.18, 0.82); }
100% { transform: scale(0.82, 1.18); }
}
.onoma-pakupaku {
animation: onoma-pakupaku 0.4s ease-in-out infinite alternate both;
}
/* Reduced motion: no motion */
@media (prefers-reduced-motion: reduce) {
.onoma-pakupaku { animation: none; }
}