Brimming full
Plenty of space or balanceSwells softly to 122% and back.
- Duration
- 1.1s
- Repeats
- No
- Easing
- ease-in-out
- Animates
- Scale scale
Show CSS
@keyframes onoma-tappuri {
0% { transform: scale(1, 1); }
50% { transform: scale(1.22, 1.22); }
100% { transform: scale(1, 1); }
}
.onoma-tappuri {
animation: onoma-tappuri 1.1s ease-in-out both;
}
/* Reduced motion: no motion */
@media (prefers-reduced-motion: reduce) {
.onoma-tappuri { animation: none; }
}