Meow like a cat
Cute, needy characterWiggles 2 time(s), up to 10°, then settles.
- Duration
- 0.7s
- Repeats
- No
- Easing
- ease-in-out
- Animates
- Rotation rotate
Show CSS
@keyframes onoma-nyaa {
0% { transform: rotate(0deg); }
20% { transform: rotate(10deg); }
40% { transform: rotate(-7.5deg); }
60% { transform: rotate(5deg); }
80% { transform: rotate(-2.5deg); }
100% { transform: rotate(0deg); }
}
.onoma-nyaa {
animation: onoma-nyaa 0.7s ease-in-out both;
}
/* Reduced motion: no motion */
@media (prefers-reduced-motion: reduce) {
.onoma-nyaa { animation: none; }
}