Warmth spreads gently
Gentle completion cueSwells softly to 108% and back.
- Duration
- 1.5s
- Repeats
- No
- Easing
- ease-in-out
- Animates
- Scale scale
Show CSS
@keyframes onoma-jinwari {
0% { transform: scale(1, 1); }
50% { transform: scale(1.08, 1.08); }
100% { transform: scale(1, 1); }
}
.onoma-jinwari {
animation: onoma-jinwari 1.5s ease-in-out both;
}
/* Reduced motion: no motion */
@media (prefers-reduced-motion: reduce) {
.onoma-jinwari { animation: none; }
}