Glossy and shiny
Look new or premiumDims and shrinks 10%, then shines again, forever.
- Duration
- 1.8s
- Repeats
- Yes
- Easing
- ease-in-out
- Animates
- Rotation · Scale · Opacity rotate scale opacity
Show CSS
@keyframes onoma-tsuyatsuya {
0% { transform: rotate(0deg) scale(1, 1); opacity: 1; }
50% { transform: rotate(0deg) scale(0.9, 0.9); opacity: 0.85; }
100% { transform: rotate(0deg) scale(1, 1); opacity: 1; }
}
.onoma-tsuyatsuya {
animation: onoma-tsuyatsuya 1.8s ease-in-out infinite both;
}
/* Reduced motion: no motion */
@media (prefers-reduced-motion: reduce) {
.onoma-tsuyatsuya { animation: none; }
}