OnomaUI

bita motion

The motion for "stop dead".

びたっ1 motionOfficial

Sample

Stop dead

Snap into place

Slides in from 200% to the left and stops.

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

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

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

Compare with similar motions