OnomaUI

guragura motion

guragura has 2 kinds of motion.

ぐらぐら2 motionsOfficial

Motion by meaning

Wobble unsteadily

Unstable / caution

Rocks 12° each way on its bottom edge, forever.

Duration
0.7s
Repeats
Yes
Easing
ease-in-out
Animates
Rotation rotate
Show CSS
@keyframes onoma-guragura {
  0% { transform: rotate(-12deg); }
  100% { transform: rotate(12deg); }
}

.onoma-guragura {
  animation: onoma-guragura 0.7s ease-in-out infinite alternate both;
  transform-origin: 50% 100%;
}

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

Boil vigorously

Heavy load in progress

Forms small, rises 90%, swells and pops, forever.

Duration
1s
Repeats
Yes
Easing
ease-out
Animates
Position · Scale · Opacity translate scale opacity
Show CSS
@keyframes onoma-guragura-2 {
  0% { transform: translate(0%, 0%) scale(0.6, 0.6); opacity: 0; }
  15% { transform: translate(0%, -16.87%) scale(0.67, 0.67); opacity: 1; }
  80% { transform: translate(0%, -90%) scale(1, 1); opacity: 1; }
  90% { transform: translate(0%, -90%) scale(1.18, 1.18); opacity: 0; }
  100% { transform: translate(0%, -90%) scale(1.18, 1.18); opacity: 0; }
}

.onoma-guragura-2 {
  animation: onoma-guragura-2 1s ease-out infinite both;
}

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

Compare with similar motions