Crisp and lively
Input acceptedDips 8% 2 time(s), rests a moment, and repeats.
- Duration
- 0.5s
- Repeats
- Yes
- Easing
- ease-in-out
- Animates
- Position translate
Show CSS
@keyframes onoma-hakihaki {
0% { transform: translate(0%, 0%); }
17.5% { transform: translate(0%, 8%); }
35% { transform: translate(0%, 0%); }
52.5% { transform: translate(0%, 8%); }
70% { transform: translate(0%, 0%); }
100% { transform: translate(0%, 0%); }
}
.onoma-hakihaki {
animation: onoma-hakihaki 0.5s ease-in-out infinite both;
}
/* Reduced motion: no motion */
@media (prefers-reduced-motion: reduce) {
.onoma-hakihaki { animation: none; }
}