Bleary-eyed blinking
Sleepy lookBriefly dims to 40% and comes right back, forever.
- Duration
- 1.6s
- Repeats
- Yes
- Easing
- ease-in-out
- Animates
- Scale · Opacity scale opacity
Show CSS
@keyframes onoma-shoboshobo {
0% { transform: scale(1, 1); opacity: 1; }
42% { transform: scale(1, 1); opacity: 1; }
50% { transform: scale(0.97, 0.97); opacity: 0.4; }
58% { transform: scale(1, 1); opacity: 1; }
100% { transform: scale(1, 1); opacity: 1; }
}
.onoma-shoboshobo {
animation: onoma-shoboshobo 1.6s ease-in-out infinite both;
}
/* Reduced motion: no motion */
@media (prefers-reduced-motion: reduce) {
.onoma-shoboshobo { animation: none; }
}