Eyes well up with tears
Show being moved to tearsDims and shrinks 8%, then shines again, forever.
- Duration
- 1.6s
- Repeats
- Yes
- Easing
- ease-in-out
- Animates
- Rotation · Scale · Opacity rotate scale opacity
Show CSS
@keyframes onoma-uruuru {
0% { transform: rotate(0deg) scale(1, 1); opacity: 1; }
50% { transform: rotate(0deg) scale(0.92, 0.92); opacity: 0.88; }
100% { transform: rotate(0deg) scale(1, 1); opacity: 1; }
}
.onoma-uruuru {
animation: onoma-uruuru 1.6s ease-in-out infinite both;
}
/* Reduced motion: no motion */
@media (prefers-reduced-motion: reduce) {
.onoma-uruuru { animation: none; }
}