Glint for an instant
Flag something newFlashes out to 114% for an instant, then returns.
- Duration
- 0.36s
- Repeats
- No
- Easing
- ease-out
- Animates
- Scale · Opacity scale opacity
Show CSS
@keyframes onoma-kira {
0% { transform: scale(1, 1); opacity: 1; }
20% { transform: scale(1.14, 1.14); opacity: 0.35; }
50% { transform: scale(1, 1); opacity: 1; }
100% { transform: scale(1, 1); opacity: 1; }
}
.onoma-kira {
animation: onoma-kira 0.36s ease-out both;
}
/* Reduced motion: no motion */
@media (prefers-reduced-motion: reduce) {
.onoma-kira { animation: none; }
}