Swell to bursting
Storage is fullSwells softly to 126% and back.
- Duration
- 0.5s
- Repeats
- No
- Easing
- ease-in-out
- Animates
- Scale scale
Show CSS
@keyframes onoma-panpan {
0% { transform: scale(1, 1); }
50% { transform: scale(1.26, 1.26); }
100% { transform: scale(1, 1); }
}
.onoma-panpan {
animation: onoma-panpan 0.5s ease-in-out both;
}
/* Reduced motion: no motion */
@media (prefers-reduced-motion: reduce) {
.onoma-panpan { animation: none; }
}