OnomaUI

pochi motion

The motion for "press a small button".

ぽちっ1 motionOfficial

Sample

Press a small button

Button press

Shrinks by 10% on press, overshoots by 4%, then settles.

Duration
0.3s
Repeats
No
Easing
ease-out
Animates
Scale scale
Show CSS
@keyframes onoma-pochi {
  0% { transform: scale(1, 1); }
  35% { transform: scale(0.9, 0.9); animation-timing-function: ease-out; }
  70% { transform: scale(1.04, 1.04); animation-timing-function: ease-in-out; }
  100% { transform: scale(1, 1); }
}

.onoma-pochi {
  animation: onoma-pochi 0.3s ease-out both;
}

/* Reduced motion: no motion */
@media (prefers-reduced-motion: reduce) {
  .onoma-pochi { animation: none; }
}

Compare with similar motions