OnomaUI

chorochoro motion

chorochoro has 2 kinds of motion.

ちょろちょろ2 motionsOfficial

Motion by meaning

A thin trickle

Loading bit by bit

Falls 50%, splats on landing and vanishes, forever.

Duration
0.6s
Repeats
Yes
Easing
ease-in
Animates
Position · Scale · Opacity translate scale opacity
Show CSS
@keyframes onoma-chorochoro {
  0% { transform: translate(0%, -50%) scale(0.9, 1.1); opacity: 0; }
  12% { transform: translate(0%, -41.43%) scale(0.9, 1.1); opacity: 1; }
  70% { transform: translate(0%, 0%) scale(0.9, 1.1); opacity: 1; animation-timing-function: ease-out; }
  80% { transform: translate(0%, 0%) scale(1.3, 0.6); opacity: 1; }
  92% { transform: translate(0%, 0%) scale(1.4, 0.3); opacity: 0; }
  100% { transform: translate(0%, 0%) scale(1.4, 0.3); opacity: 0; }
}

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

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

Dart about

A small creature darting

Glides 25% each way, smoothly, forever.

Duration
0.5s
Repeats
Yes
Easing
ease-in-out
Animates
Position translate
Show CSS
@keyframes onoma-chorochoro-2 {
  0% { transform: translate(-25%, 0%); }
  100% { transform: translate(25%, 0%); }
}

.onoma-chorochoro-2 {
  animation: onoma-chorochoro-2 0.5s ease-in-out infinite alternate both;
}

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

Compare with similar motions