Plump up
Selected stateSwells softly to 116% and back.
- Duration
- 0.9s
- Repeats
- No
- Easing
- ease-in-out
- Animates
- Scale scale
Show CSS
@keyframes onoma-fukkura {
0% { transform: scale(1, 1); }
50% { transform: scale(1.16, 1.16); }
100% { transform: scale(1, 1); }
}
.onoma-fukkura {
animation: onoma-fukkura 0.9s ease-in-out both;
}
/* Reduced motion: no motion */
@media (prefers-reduced-motion: reduce) {
.onoma-fukkura { animation: none; }
}