OnomaUI

wiin motion

wiin has 2 kinds of motion.

うぃーん2 motionsOfficial

Motion by meaning

A machine glides open

Open a panel

Slides in from 120% to the left and stops.

Duration
0.9s
Repeats
No
Easing
cubic-bezier(.2,.8,.2,1)
Animates
Position · Opacity translate opacity
Show CSS
@keyframes onoma-wiin {
  0% { transform: translate(-120%, 0%); opacity: 0; }
  40% { transform: translate(-72%, 0%); opacity: 1; }
  100% { transform: translate(0%, 0%); opacity: 1; }
}

.onoma-wiin {
  animation: onoma-wiin 0.9s cubic-bezier(.2,.8,.2,1) both;
}

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

A motor hums

Show processing

Vibrates 1% side to side, fast, forever.

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

.onoma-wiin-2 {
  animation: onoma-wiin-2 0.1s linear infinite both;
}

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

Compare with similar motions