Look sharp and firm
Determined characterStretches 12% upward from its base and springs back.
- Duration
- 0.4s
- Repeats
- No
- Easing
- ease-in-out
- Animates
- Scale scale
Show CSS
@keyframes onoma-kiri {
0% { transform: scale(1, 1); }
40% { transform: scale(0.96, 1.12); }
70% { transform: scale(1.01, 0.98); }
88% { transform: scale(1, 1.01); }
100% { transform: scale(1, 1); }
}
.onoma-kiri {
animation: onoma-kiri 0.4s ease-in-out both;
transform-origin: 50% 100%;
}
/* Reduced motion: no motion */
@media (prefers-reduced-motion: reduce) {
.onoma-kiri { animation: none; }
}