A tiny spark
A small jolt of attentionFlashes out to 106% for an instant, then returns.
- Duration
- 0.26s
- Repeats
- No
- Easing
- ease-out
- Animates
- Scale · Opacity scale opacity
Show CSS
@keyframes onoma-chiri {
0% { transform: scale(1, 1); opacity: 1; }
20% { transform: scale(1.06, 1.06); opacity: 0.35; }
50% { transform: scale(1, 1); opacity: 1; }
100% { transform: scale(1, 1); opacity: 1; }
}
.onoma-chiri {
animation: onoma-chiri 0.26s ease-out both;
}
/* Reduced motion: no motion */
@media (prefers-reduced-motion: reduce) {
.onoma-chiri { animation: none; }
}