Sway slowly and widely
A dangling tag swaysSwings 20° from its top edge and gradually settles.
- Duration
- 2s
- Repeats
- No
- Easing
- ease-in-out
- Animates
- Rotation rotate
Show CSS
@keyframes onoma-yurari {
0% { transform: rotate(0deg); }
20% { transform: rotate(20deg); }
40% { transform: rotate(-12deg); }
60% { transform: rotate(7deg); }
80% { transform: rotate(-3deg); }
100% { transform: rotate(0deg); }
}
.onoma-yurari {
animation: onoma-yurari 2s ease-in-out both;
transform-origin: 50% 0%;
}
/* Reduced motion: no motion */
@media (prefers-reduced-motion: reduce) {
.onoma-yurari { animation: none; }
}