Firmed up and alert
Waking-up expressionStretches 30% upward from its base and springs back.
- Duration
- 0.7s
- Repeats
- No
- Easing
- ease-in-out
- Animates
- Scale scale
Show CSS
@keyframes onoma-shakkiri {
0% { transform: scale(1, 1); }
40% { transform: scale(0.9, 1.3); }
70% { transform: scale(1.03, 0.94); }
88% { transform: scale(1, 1.02); }
100% { transform: scale(1, 1); }
}
.onoma-shakkiri {
animation: onoma-shakkiri 0.7s ease-in-out both;
transform-origin: 50% 100%;
}
/* Reduced motion: no motion */
@media (prefers-reduced-motion: reduce) {
.onoma-shakkiri { animation: none; }
}