OnomaUI

harahara motion

harahara has 2 kinds of motion.

はらはら2 motionsOfficial

Motion by meaning

Petals fall softly

Dismiss a card

Sways 5 times (width 30%, tilt up to 20°) while falling 220% and fading out.

Duration
2s
Repeats
No
Easing
ease-in-out
Animates
Position · Rotation · Opacity translate rotate opacity
Show CSS
@keyframes onoma-harahara {
  0% { transform: translate(0%, 0%) rotate(0deg); opacity: 1; animation-timing-function: ease-in-out; }
  20% { transform: translate(28%, 27.15%) rotate(18.67deg); opacity: 1; animation-timing-function: ease-in-out; }
  40% { transform: translate(-26%, 66.85%) rotate(-17.33deg); opacity: 1; animation-timing-function: ease-in-out; }
  60% { transform: translate(24%, 113.25%) rotate(16deg); opacity: 1; animation-timing-function: ease-in-out; }
  80% { transform: translate(-22%, 164.6%) rotate(-14.67deg); opacity: 0.6; animation-timing-function: ease-in-out; }
  100% { transform: translate(0%, 220%) rotate(6deg); opacity: 0; animation-timing-function: ease-in-out; }
}

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

/* Reduced motion: only fade out */
@keyframes onoma-harahara-fade { from { opacity: 1; } to { opacity: 0; } }
@media (prefers-reduced-motion: reduce) {
  .onoma-harahara { animation: onoma-harahara-fade 0.2s ease-out both; }
}

Anxious, teetering

Before a risky action

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

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

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

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

Compare with similar motions