Sticky and tacky
Sticky feelDroops 25% downward from its top, slowly, and back.
- Duration
- 1.5s
- Repeats
- Yes
- Easing
- ease-in-out
- Animates
- Skew · Scale skewY scale
Show CSS
@keyframes onoma-betabeta {
0% { transform: skewY(0deg) scale(1, 1); }
100% { transform: skewY(4deg) scale(0.94, 1.25); }
}
.onoma-betabeta {
animation: onoma-betabeta 1.5s ease-in-out infinite alternate both;
transform-origin: 50% 0%;
}
/* Reduced motion: no motion */
@media (prefers-reduced-motion: reduce) {
.onoma-betabeta { animation: none; }
}