Puff up a little
Show selectionSwells softly to 110% and back.
- Duration
- 0.36s
- Repeats
- No
- Easing
- ease-in-out
- Animates
- Scale scale
Show CSS
@keyframes onoma-puku {
0% { transform: scale(1, 1); }
50% { transform: scale(1.1, 1.1); }
100% { transform: scale(1, 1); }
}
.onoma-puku {
animation: onoma-puku 0.36s ease-in-out both;
}
/* Reduced motion: no motion */
@media (prefers-reduced-motion: reduce) {
.onoma-puku { animation: none; }
}