Drip thick and slow
Cheese or honeyDroops 35% downward from its top, slowly, and back.
- Duration
- 3.2s
- Repeats
- Yes
- Easing
- ease-in-out
- Animates
- Skew · Scale skewY scale
Show CSS
@keyframes onoma-torori {
0% { transform: skewY(0deg) scale(1, 1); }
100% { transform: skewY(4deg) scale(0.91, 1.35); }
}
.onoma-torori {
animation: onoma-torori 3.2s ease-in-out infinite alternate both;
transform-origin: 50% 0%;
}
/* Reduced motion: no motion */
@media (prefers-reduced-motion: reduce) {
.onoma-torori { animation: none; }
}