Hang limp
Dangling tagSwings 28° from its top edge and gradually settles.
- Duration
- 1.8s
- Repeats
- No
- Easing
- ease-in-out
- Animates
- Rotation rotate
Show CSS
@keyframes onoma-buran {
0% { transform: rotate(0deg); }
20% { transform: rotate(28deg); }
40% { transform: rotate(-16.8deg); }
60% { transform: rotate(9.8deg); }
80% { transform: rotate(-4.2deg); }
100% { transform: rotate(0deg); }
}
.onoma-buran {
animation: onoma-buran 1.8s ease-in-out both;
transform-origin: 50% 0%;
}
/* Reduced motion: no motion */
@media (prefers-reduced-motion: reduce) {
.onoma-buran { animation: none; }
}