Blink in surprise
Surprised reactionBriefly dims to 0% and comes right back, forever.
- Duration
- 0.7s
- Repeats
- Yes
- Easing
- ease-in-out
- Animates
- Scale · Opacity scale opacity
Show CSS
@keyframes onoma-pachikuri {
0% { transform: scale(1, 1); opacity: 1; }
42% { transform: scale(1, 1); opacity: 1; }
50% { transform: scale(0.97, 0.97); opacity: 0; }
58% { transform: scale(1, 1); opacity: 1; }
100% { transform: scale(1, 1); opacity: 1; }
}
.onoma-pachikuri {
animation: onoma-pachikuri 0.7s ease-in-out infinite both;
}
/* Reduced motion: no motion */
@media (prefers-reduced-motion: reduce) {
.onoma-pachikuri { animation: none; }
}