Slip up carelessly
Show a careless mistakeWiggles 1 time(s), up to 10°, then settles.
- Duration
- 0.5s
- Repeats
- No
- Easing
- ease-in-out
- Animates
- Rotation rotate
Show CSS
@keyframes onoma-ukkari {
0% { transform: rotate(0deg); }
33.33% { transform: rotate(10deg); }
66.67% { transform: rotate(-5deg); }
100% { transform: rotate(0deg); }
}
.onoma-ukkari {
animation: onoma-ukkari 0.5s ease-in-out both;
}
/* Reduced motion: no motion */
@media (prefers-reduced-motion: reduce) {
.onoma-ukkari { animation: none; }
}