Stick out the tongue
Cheeky / teasingPops up 25%, holds, then ducks back.
- Duration
- 0.8s
- Repeats
- No
- Easing
- cubic-bezier(.3,.7,.4,1)
- Animates
- Position translate
Show CSS
@keyframes onoma-bero {
0% { transform: translate(0%, 0%); }
30% { transform: translate(0%, -25%); }
70% { transform: translate(0%, -25%); }
100% { transform: translate(0%, 0%); }
}
.onoma-bero {
animation: onoma-bero 0.8s cubic-bezier(.3,.7,.4,1) both;
}
/* Reduced motion: no motion */
@media (prefers-reduced-motion: reduce) {
.onoma-bero { animation: none; }
}