Dawdle lazily
An unmotivated characterStaggers 6% side to side, tipping on its base, forever.
- Duration
- 3.5s
- Repeats
- Yes
- Easing
- ease-in-out
- Animates
- Position · Rotation translate rotate
Show CSS
@keyframes onoma-chintara {
0% { transform: translate(-6%, 0%) rotate(-4deg); }
30% { transform: translate(2.4%, 0%) rotate(3.2deg); }
50% { transform: translate(-1.8%, 0%) rotate(-2deg); }
80% { transform: translate(6%, 0%) rotate(4deg); }
100% { transform: translate(-6%, 0%) rotate(-4deg); }
}
.onoma-chintara {
animation: onoma-chintara 3.5s ease-in-out infinite both;
transform-origin: 50% 100%;
}
/* Reduced motion: no motion */
@media (prefers-reduced-motion: reduce) {
.onoma-chintara { animation: none; }
}