OnomaUI

rinrin motion

rinrin has 2 kinds of motion.

りんりん2 motionsOfficial

Motion by meaning

A bell keeps ringing

Signal an incoming call

Rattles 2% and 10° side to side, forever.

Duration
0.2s
Repeats
Yes
Easing
linear
Animates
Position · Rotation translate rotate
Show CSS
@keyframes onoma-rinrin {
  0% { transform: translate(0%, 0%) rotate(0deg); }
  25% { transform: translate(2%, 0%) rotate(-10deg); }
  50% { transform: translate(0%, 0%) rotate(0deg); }
  75% { transform: translate(-2%, 0%) rotate(10deg); }
  100% { transform: translate(0%, 0%) rotate(0deg); }
}

.onoma-rinrin {
  animation: onoma-rinrin 0.2s linear infinite both;
}

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

Brimming with vigor

Show motivation

Stretches 30% upward from its base and springs back.

Duration
0.8s
Repeats
No
Easing
ease-in-out
Animates
Scale scale
Show CSS
@keyframes onoma-rinrin-2 {
  0% { transform: scale(1, 1); }
  40% { transform: scale(0.9, 1.3); }
  70% { transform: scale(1.03, 0.94); }
  88% { transform: scale(1, 1.02); }
  100% { transform: scale(1, 1); }
}

.onoma-rinrin-2 {
  animation: onoma-rinrin-2 0.8s ease-in-out both;
  transform-origin: 50% 100%;
}

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

Compare with similar motions