Crunch and munch
Munching or scratchingSquishes 15% wide, then tall, back and forth, forever.
- Duration
- 0.3s
- Repeats
- Yes
- Easing
- ease-in-out
- Animates
- Scale scale
Show CSS
@keyframes onoma-boribori {
0% { transform: scale(1.15, 0.85); }
100% { transform: scale(0.85, 1.15); }
}
.onoma-boribori {
animation: onoma-boribori 0.3s ease-in-out infinite alternate both;
}
/* Reduced motion: no motion */
@media (prefers-reduced-motion: reduce) {
.onoma-boribori { animation: none; }
}