Thick and sludgy
A murky messDroops 50% downward from its top, slowly, and back.
- Duration
- 3s
- Repeats
- Yes
- Easing
- ease-in-out
- Animates
- Skew · Scale skewY scale
Show CSS
@keyframes onoma-dorodoro {
0% { transform: skewY(0deg) scale(1, 1); }
100% { transform: skewY(4deg) scale(0.88, 1.5); }
}
.onoma-dorodoro {
animation: onoma-dorodoro 3s ease-in-out infinite alternate both;
transform-origin: 50% 0%;
}
/* Reduced motion: no motion */
@media (prefers-reduced-motion: reduce) {
.onoma-dorodoro { animation: none; }
}