Take offense
Displeased reactionSwells softly to 108% and back.
- Duration
- 0.36s
- Repeats
- No
- Easing
- ease-in-out
- Animates
- Scale scale
Show CSS
@keyframes onoma-mu {
0% { transform: scale(1, 1); }
50% { transform: scale(1.08, 1.08); }
100% { transform: scale(1, 1); }
}
.onoma-mu {
animation: onoma-mu 0.36s ease-in-out both;
}
/* Reduced motion: no motion */
@media (prefers-reduced-motion: reduce) {
.onoma-mu { animation: none; }
}