Smirk knowingly
Mischievous characterBends 5° each way, wriggling side to side, forever.
- Duration
- 1.1s
- Repeats
- Yes
- Easing
- ease-in-out
- Animates
- Rotation · Skew rotate skewY
Show CSS
@keyframes onoma-niyaniya {
0% { transform: rotate(6deg) skewY(-5deg); }
100% { transform: rotate(-6deg) skewY(5deg); }
}
.onoma-niyaniya {
animation: onoma-niyaniya 1.1s ease-in-out infinite alternate both;
}
/* Reduced motion: no motion */
@media (prefers-reduced-motion: reduce) {
.onoma-niyaniya { animation: none; }
}