OnomaUI

tsuu motion

The motion for "glide smoothly a long way".

つーっ1 motionOfficial

Sample

Glide smoothly a long way

Slide a panel in

Slides in from 180% to the left and stops.

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

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

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

Compare with similar motions