A sudden sharp pain
Critical warningBeats up to 122%, beats once more smaller, then settles.
- Duration
- 0.4s
- Repeats
- No
- Easing
- ease-out
- Animates
- Scale scale
Show CSS
@keyframes onoma-zuki {
0% { transform: scale(1, 1); }
20% { transform: scale(1.22, 1.22); }
40% { transform: scale(0.96, 0.96); }
60% { transform: scale(1.09, 1.09); }
100% { transform: scale(1, 1); }
}
.onoma-zuki {
animation: onoma-zuki 0.4s ease-out both;
}
/* Reduced motion: no motion */
@media (prefers-reduced-motion: reduce) {
.onoma-zuki { animation: none; }
}