Vigorous and energetic
Energy boostSwells to 119% and back in a steady rhythm, forever.
- Duration
- 0.7s
- Repeats
- Yes
- Easing
- ease-in-out
- Animates
- Scale scale
Show CSS
@keyframes onoma-morimori {
0% { transform: scale(1, 1); }
50% { transform: scale(1.19, 1.19); }
100% { transform: scale(1, 1); }
}
.onoma-morimori {
animation: onoma-morimori 0.7s ease-in-out infinite both;
}
/* Reduced motion: no motion */
@media (prefers-reduced-motion: reduce) {
.onoma-morimori { animation: none; }
}