Ignite / blush
Blushing / lighting upFlashes out to 135% for an instant, then returns.
- Duration
- 0.46s
- Repeats
- No
- Easing
- ease-out
- Animates
- Scale · Opacity scale opacity
Show CSS
@keyframes onoma-bo {
0% { transform: scale(1, 1); opacity: 1; }
20% { transform: scale(1.35, 1.35); opacity: 0.35; }
50% { transform: scale(1, 1); opacity: 1; }
100% { transform: scale(1, 1); opacity: 1; }
}
.onoma-bo {
animation: onoma-bo 0.46s ease-out both;
}
/* Reduced motion: no motion */
@media (prefers-reduced-motion: reduce) {
.onoma-bo { animation: none; }
}