Nuzzle up
Show affectionBends 8° each way, wriggling side to side, forever.
- Duration
- 0.6s
- Repeats
- Yes
- Easing
- ease-in-out
- Animates
- Rotation · Skew rotate skewY
Show CSS
@keyframes onoma-surisuri {
0% { transform: rotate(6deg) skewY(-8deg); }
100% { transform: rotate(-6deg) skewY(8deg); }
}
.onoma-surisuri {
animation: onoma-surisuri 0.6s ease-in-out infinite alternate both;
}
/* Reduced motion: no motion */
@media (prefers-reduced-motion: reduce) {
.onoma-surisuri { animation: none; }
}