Fume with anger
Show annoyanceSwells to 110% and back in a steady rhythm, forever.
- Duration
- 0.5s
- Repeats
- Yes
- Easing
- ease-in-out
- Animates
- Scale scale
Show CSS
@keyframes onoma-punpun {
0% { transform: scale(1, 1); }
50% { transform: scale(1.1, 1.1); }
100% { transform: scale(1, 1); }
}
.onoma-punpun {
animation: onoma-punpun 0.5s ease-in-out infinite both;
}
/* Reduced motion: no motion */
@media (prefers-reduced-motion: reduce) {
.onoma-punpun { animation: none; }
}