Wheeze and pant
Tired characterSlowly grows 10% while fading a little, then returns, forever.
- Duration
- 0.9s
- Repeats
- Yes
- Easing
- ease-in-out
- Animates
- Scale · Opacity scale opacity
Show CSS
@keyframes onoma-zeizei {
0% { transform: scale(1, 1); opacity: 1; }
100% { transform: scale(1.1, 1.1); opacity: 0.9; }
}
.onoma-zeizei {
animation: onoma-zeizei 0.9s ease-in-out infinite alternate both;
}
/* Reduced motion: no motion */
@media (prefers-reduced-motion: reduce) {
.onoma-zeizei { animation: none; }
}