Wag a finger: no no
Say that is not rightWiggles 3 time(s), up to 8°, then settles.
- Duration
- 0.6s
- Repeats
- No
- Easing
- ease-in-out
- Animates
- Rotation rotate
Show CSS
@keyframes onoma-chitchi {
0% { transform: rotate(0deg); }
14.29% { transform: rotate(8deg); }
28.57% { transform: rotate(-6.67deg); }
42.86% { transform: rotate(5.33deg); }
57.14% { transform: rotate(-4deg); }
71.43% { transform: rotate(2.67deg); }
85.71% { transform: rotate(-1.33deg); }
100% { transform: rotate(0deg); }
}
.onoma-chitchi {
animation: onoma-chitchi 0.6s ease-in-out both;
}
/* Reduced motion: no motion */
@media (prefers-reduced-motion: reduce) {
.onoma-chitchi { animation: none; }
}