Heart keeps pounding
Nervous anticipationSwells to 118% and back in a steady rhythm, forever.
- Duration
- 0.6s
- Repeats
- Yes
- Easing
- ease-in-out
- Animates
- Scale scale
Show CSS
@keyframes onoma-dokidoki {
0% { transform: scale(1, 1); }
50% { transform: scale(1.18, 1.18); }
100% { transform: scale(1, 1); }
}
.onoma-dokidoki {
animation: onoma-dokidoki 0.6s ease-in-out infinite both;
}
/* Reduced motion: no motion */
@media (prefers-reduced-motion: reduce) {
.onoma-dokidoki { animation: none; }
}