Drowsy and dreamy
Sleepy or idleSlowly grows 3% while fading a little, then returns, forever.
- Duration
- 3s
- Repeats
- Yes
- Easing
- ease-in-out
- Animates
- Scale · Opacity scale opacity
Show CSS
@keyframes onoma-toron {
0% { transform: scale(1, 1); opacity: 1; }
100% { transform: scale(1.03, 1.03); opacity: 0.6; }
}
.onoma-toron {
animation: onoma-toron 3s ease-in-out infinite alternate both;
}
/* Reduced motion: no motion */
@media (prefers-reduced-motion: reduce) {
.onoma-toron { animation: none; }
}