Hazy, unsettled
Unresolved stateSlowly grows 6% while fading a little, then returns, forever.
- Duration
- 2.4s
- Repeats
- Yes
- Easing
- ease-in-out
- Animates
- Scale · Opacity scale opacity
Show CSS
@keyframes onoma-moyamoya {
0% { transform: scale(1, 1); opacity: 1; }
100% { transform: scale(1.06, 1.06); opacity: 0.5; }
}
.onoma-moyamoya {
animation: onoma-moyamoya 2.4s ease-in-out infinite alternate both;
}
/* Reduced motion: no motion */
@media (prefers-reduced-motion: reduce) {
.onoma-moyamoya { animation: none; }
}