OnomaUI

ponpon motion

ponpon has 2 kinds of motion.

ぽんぽん2 motionsOfficial

Motion by meaning

Bounce lightly

Draw attention

Bounces 30% high, squashing 10% on each landing, forever.

Duration
0.56s
Repeats
Yes
Easing
ease-in-out
Animates
Position · Scale translate scale
Show CSS
@keyframes onoma-ponpon {
  0% { transform: translate(0%, 0%) scale(1.1, 0.9); animation-timing-function: cubic-bezier(.3,.7,.5,1); }
  50% { transform: translate(0%, -30%) scale(0.97, 1.03); animation-timing-function: cubic-bezier(.5,0,.7,.3); }
  100% { transform: translate(0%, 0%) scale(1.1, 0.9); }
}

.onoma-ponpon {
  animation: onoma-ponpon 0.56s ease-in-out infinite both;
  transform-origin: 50% 100%;
}

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

Pat to encourage

Encouragement

Dips 8% 2 time(s), rests a moment, and repeats.

Duration
0.7s
Repeats
Yes
Easing
ease-in-out
Animates
Position translate
Show CSS
@keyframes onoma-ponpon-2 {
  0% { transform: translate(0%, 0%); }
  17.5% { transform: translate(0%, 8%); }
  35% { transform: translate(0%, 0%); }
  52.5% { transform: translate(0%, 8%); }
  70% { transform: translate(0%, 0%); }
  100% { transform: translate(0%, 0%); }
}

.onoma-ponpon-2 {
  animation: onoma-ponpon-2 0.7s ease-in-out infinite both;
}

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

Compare with similar motions