Poke poke with a finger
Prompt for a responseDips 6% 2 time(s), rests a moment, and repeats.
- Duration
- 0.5s
- Repeats
- Yes
- Easing
- ease-in-out
- Animates
- Position translate
Show CSS
@keyframes onoma-tsuntsun {
0% { transform: translate(0%, 0%); }
17.5% { transform: translate(0%, 6%); }
35% { transform: translate(0%, 0%); }
52.5% { transform: translate(0%, 6%); }
70% { transform: translate(0%, 0%); }
100% { transform: translate(0%, 0%); }
}
.onoma-tsuntsun {
animation: onoma-tsuntsun 0.5s ease-in-out infinite both;
}
/* Reduced motion: no motion */
@media (prefers-reduced-motion: reduce) {
.onoma-tsuntsun { animation: none; }
}