Cling and lean on
Clingy affectionLeans 15° from its bottom edge, holds, then straightens up.
- Duration
- 1.8s
- Repeats
- No
- Easing
- ease-in-out
- Animates
- Rotation rotate
Show CSS
@keyframes onoma-bettari {
0% { transform: rotate(0deg); }
35% { transform: rotate(15deg); }
65% { transform: rotate(15deg); }
100% { transform: rotate(0deg); }
}
.onoma-bettari {
animation: onoma-bettari 1.8s ease-in-out both;
transform-origin: 50% 100%;
}
/* Reduced motion: no motion */
@media (prefers-reduced-motion: reduce) {
.onoma-bettari { animation: none; }
}