OnomaUI

puripuri motion

puripuri has 2 kinds of motion.

ぷりぷり2 motionsOfficial

Motion by meaning

Stomp off in a huff

Angry character

Lifts 10%, then lands with a thud, squashing 10%, forever.

Duration
0.6s
Repeats
Yes
Easing
ease-in-out
Animates
Position · Scale translate scale
Show CSS
@keyframes onoma-puripuri {
  0% { transform: translate(0%, 0%) scale(1, 1); animation-timing-function: ease-out; }
  25% { transform: translate(0%, -10%) scale(1, 1); animation-timing-function: cubic-bezier(.6,0,1,.6); }
  42% { transform: translate(0%, 0%) scale(1.1, 0.9); animation-timing-function: ease-out; }
  60% { transform: translate(0%, 0%) scale(1, 1); }
  100% { transform: translate(0%, 0%) scale(1, 1); }
}

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

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

Plump and springy

Food or material texture

Stretches 22% wide, then wobbles a few times back to shape.

Duration
0.5s
Repeats
No
Easing
ease-in-out
Animates
Scale scale
Show CSS
@keyframes onoma-puripuri-2 {
  0% { transform: scale(1, 1); }
  25% { transform: scale(1.22, 0.8); }
  45% { transform: scale(0.87, 1.13); }
  65% { transform: scale(1.07, 0.94); }
  82% { transform: scale(0.98, 1.02); }
  100% { transform: scale(1, 1); }
}

.onoma-puripuri-2 {
  animation: onoma-puripuri-2 0.5s ease-in-out both;
}

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

Compare with similar motions