Squirm when tickled
Touch feedbackBends 10° each way, wriggling side to side, forever.
- Duration
- 0.3s
- Repeats
- Yes
- Easing
- ease-in-out
- Animates
- Rotation · Skew rotate skewY
Show CSS
@keyframes onoma-kochokocho {
0% { transform: rotate(8deg) skewY(-10deg); }
100% { transform: rotate(-8deg) skewY(10deg); }
}
.onoma-kochokocho {
animation: onoma-kochokocho 0.3s ease-in-out infinite alternate both;
}
/* Reduced motion: no motion */
@media (prefers-reduced-motion: reduce) {
.onoma-kochokocho { animation: none; }
}