Heart skips a beat
Favorite or crushBeats up to 118%, beats once more smaller, then settles.
- Duration
- 0.5s
- Repeats
- No
- Easing
- ease-out
- Animates
- Scale scale
Show CSS
@keyframes onoma-kyun {
0% { transform: scale(1, 1); }
20% { transform: scale(1.18, 1.18); }
40% { transform: scale(0.96, 0.96); }
60% { transform: scale(1.07, 1.07); }
100% { transform: scale(1, 1); }
}
.onoma-kyun {
animation: onoma-kyun 0.5s ease-out both;
}
/* Reduced motion: no motion */
@media (prefers-reduced-motion: reduce) {
.onoma-kyun { animation: none; }
}