Heart jumps with a thud
Surprise or a crushBeats up to 140%, beats once more smaller, then settles.
- Duration
- 0.9s
- Repeats
- No
- Easing
- ease-out
- Animates
- Scale scale
Show CSS
@keyframes onoma-dokin {
0% { transform: scale(1, 1); }
20% { transform: scale(1.4, 1.4); }
40% { transform: scale(0.92, 0.92); }
60% { transform: scale(1.16, 1.16); }
100% { transform: scale(1, 1); }
}
.onoma-dokin {
animation: onoma-dokin 0.9s ease-out both;
}
/* Reduced motion: no motion */
@media (prefers-reduced-motion: reduce) {
.onoma-dokin { animation: none; }
}