Softly and gently
A gentle button pressShrinks by 6% on press, overshoots by 2%, then settles.
- Duration
- 0.6s
- Repeats
- No
- Easing
- ease-out
- Animates
- Scale scale
Show CSS
@keyframes onoma-yanwari {
0% { transform: scale(1, 1); }
35% { transform: scale(0.94, 0.94); animation-timing-function: ease-out; }
70% { transform: scale(1.02, 1.02); animation-timing-function: ease-in-out; }
100% { transform: scale(1, 1); }
}
.onoma-yanwari {
animation: onoma-yanwari 0.6s ease-out both;
}
/* Reduced motion: no motion */
@media (prefers-reduced-motion: reduce) {
.onoma-yanwari { animation: none; }
}