Tacky and clingy
Show stickinessSquishes 10% wide, then tall, back and forth, forever.
- Duration
- 1.2s
- Repeats
- Yes
- Easing
- ease-in-out
- Animates
- Scale scale
Show CSS
@keyframes onoma-netoneto {
0% { transform: scale(1.1, 0.9); }
100% { transform: scale(0.9, 1.1); }
}
.onoma-netoneto {
animation: onoma-netoneto 1.2s ease-in-out infinite alternate both;
}
/* Reduced motion: no motion */
@media (prefers-reduced-motion: reduce) {
.onoma-netoneto { animation: none; }
}