Billow up
Motivation risingSwells softly to 124% and back.
- Duration
- 1.3s
- Repeats
- No
- Easing
- ease-in-out
- Animates
- Scale scale
Show CSS
@keyframes onoma-mukumuku {
0% { transform: scale(1, 1); }
50% { transform: scale(1.24, 1.24); }
100% { transform: scale(1, 1); }
}
.onoma-mukumuku {
animation: onoma-mukumuku 1.3s ease-in-out both;
}
/* Reduced motion: no motion */
@media (prefers-reduced-motion: reduce) {
.onoma-mukumuku { animation: none; }
}