Press and twist
Rough, affectionate rubWiggles 3 time(s), up to 14°, then settles.
- Duration
- 0.7s
- Repeats
- No
- Easing
- ease-in-out
- Animates
- Rotation rotate
Show CSS
@keyframes onoma-guriguri {
0% { transform: rotate(0deg); }
14.29% { transform: rotate(14deg); }
28.57% { transform: rotate(-11.67deg); }
42.86% { transform: rotate(9.33deg); }
57.14% { transform: rotate(-7deg); }
71.43% { transform: rotate(4.67deg); }
85.71% { transform: rotate(-2.33deg); }
100% { transform: rotate(0deg); }
}
.onoma-guriguri {
animation: onoma-guriguri 0.7s ease-in-out both;
}
/* Reduced motion: no motion */
@media (prefers-reduced-motion: reduce) {
.onoma-guriguri { animation: none; }
}