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