At a loss, looking around
No solution foundWiggles 4 time(s), up to 14°, then settles.
- Duration
- 1.2s
- Repeats
- No
- Easing
- ease-in-out
- Animates
- Rotation rotate
Show CSS
@keyframes onoma-orooro {
0% { transform: rotate(0deg); }
11.11% { transform: rotate(14deg); }
22.22% { transform: rotate(-12.25deg); }
33.33% { transform: rotate(10.5deg); }
44.44% { transform: rotate(-8.75deg); }
55.56% { transform: rotate(7deg); }
66.67% { transform: rotate(-5.25deg); }
77.78% { transform: rotate(3.5deg); }
88.89% { transform: rotate(-1.75deg); }
100% { transform: rotate(0deg); }
}
.onoma-orooro {
animation: onoma-orooro 1.2s ease-in-out both;
}
/* Reduced motion: no motion */
@media (prefers-reduced-motion: reduce) {
.onoma-orooro { animation: none; }
}