There, there
Comfort the userDips 6% 3 time(s), rests a moment, and repeats.
- Duration
- 1.4s
- Repeats
- Yes
- Easing
- ease-in-out
- Animates
- Position translate
Show CSS
@keyframes onoma-yoshiyoshi {
0% { transform: translate(0%, 0%); }
11.67% { transform: translate(0%, 6%); }
23.33% { transform: translate(0%, 0%); }
35% { transform: translate(0%, 6%); }
46.67% { transform: translate(0%, 0%); }
58.33% { transform: translate(0%, 6%); }
70% { transform: translate(0%, 0%); }
100% { transform: translate(0%, 0%); }
}
.onoma-yoshiyoshi {
animation: onoma-yoshiyoshi 1.4s ease-in-out infinite both;
}
/* Reduced motion: no motion */
@media (prefers-reduced-motion: reduce) {
.onoma-yoshiyoshi { animation: none; }
}