OnomaUI

zui motion

The motion for "push forward boldly".

ずいっ1 motionOfficial

Sample

Push forward boldly

Bring key info forward

Zooms from 50% scale straight to full size.

Duration
0.36s
Repeats
No
Easing
cubic-bezier(.2,.9,.3,1)
Animates
Scale · Opacity scale opacity
Show CSS
@keyframes onoma-zui {
  0% { transform: scale(0.5, 0.5); opacity: 0; }
  60% { transform: scale(0.8, 0.8); opacity: 1; }
  100% { transform: scale(1, 1); opacity: 1; }
}

.onoma-zui {
  animation: onoma-zui 0.36s cubic-bezier(.2,.9,.3,1) both;
}

/* Reduced motion: only fade in */
@keyframes onoma-zui-fade { from { opacity: 0; } to { opacity: 1; } }
@media (prefers-reduced-motion: reduce) {
  .onoma-zui { animation: onoma-zui-fade 0.2s ease-out both; }
}

Compare with similar motions