Mound up roundly
Pile up / increaseSwells softly to 120% and back.
- Duration
- 1s
- Repeats
- No
- Easing
- ease-in-out
- Animates
- Scale scale
Show CSS
@keyframes onoma-konmori {
0% { transform: scale(1, 1); }
50% { transform: scale(1.2, 1.2); }
100% { transform: scale(1, 1); }
}
.onoma-konmori {
animation: onoma-konmori 1s ease-in-out both;
}
/* Reduced motion: no motion */
@media (prefers-reduced-motion: reduce) {
.onoma-konmori { animation: none; }
}