OnomaUI

pan motion

The motion for "pop with a bang".

ぱんっ1 motionOfficial

Sample

Pop with a bang

Clear it at once

Bursts out to 190% and vanishes.

Duration
0.2s
Repeats
No
Easing
ease-out
Animates
Scale · Opacity scale opacity
Show CSS
@keyframes onoma-pan {
  0% { transform: scale(1, 1); opacity: 1; }
  35% { transform: scale(1.45, 1.45); opacity: 1; }
  100% { transform: scale(1.9, 1.9); opacity: 0; }
}

.onoma-pan {
  animation: onoma-pan 0.2s ease-out both;
}

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

Compare with similar motions