Stout and heavy
Give a sense of weightSwells softly to 118% and back.
- Duration
- 1.4s
- Repeats
- No
- Easing
- ease-in-out
- Animates
- Scale scale
Show CSS
@keyframes onoma-deppuri {
0% { transform: scale(1, 1); }
50% { transform: scale(1.18, 1.18); }
100% { transform: scale(1, 1); }
}
.onoma-deppuri {
animation: onoma-deppuri 1.4s ease-in-out both;
}
/* Reduced motion: no motion */
@media (prefers-reduced-motion: reduce) {
.onoma-deppuri { animation: none; }
}