Fidgety and restless
Waiting for a replyRocks 9° each way on its bottom edge, forever.
- Duration
- 0.58s
- Repeats
- Yes
- Easing
- ease-in-out
- Animates
- Rotation rotate
Show CSS
@keyframes onoma-sowasowa {
0% { transform: rotate(-9deg); }
100% { transform: rotate(9deg); }
}
.onoma-sowasowa {
animation: onoma-sowasowa 0.58s ease-in-out infinite alternate both;
transform-origin: 50% 100%;
}
/* Reduced motion: no motion */
@media (prefers-reduced-motion: reduce) {
.onoma-sowasowa { animation: none; }
}