Greasy shine
Emphasize a shineDims and shrinks 28%, then shines again, forever.
- Duration
- 1s
- Repeats
- Yes
- Easing
- ease-in-out
- Animates
- Rotation · Scale · Opacity rotate scale opacity
Show CSS
@keyframes onoma-tekateka {
0% { transform: rotate(0deg) scale(1, 1); opacity: 1; }
50% { transform: rotate(0deg) scale(0.72, 0.72); opacity: 0.58; }
100% { transform: rotate(0deg) scale(1, 1); opacity: 1; }
}
.onoma-tekateka {
animation: onoma-tekateka 1s ease-in-out infinite both;
}
/* Reduced motion: no motion */
@media (prefers-reduced-motion: reduce) {
.onoma-tekateka { animation: none; }
}