OnomaUI

tsururi motion

The motion for "slide smoothly off".

つるり1 motionOfficial

Sample

Slide smoothly off

Remove gently

Tips 10° while falling 120% and fading out.

Duration
1s
Repeats
No
Easing
cubic-bezier(.55,0,1,.45)
Animates
Position · Rotation · Opacity translate rotate opacity
Show CSS
@keyframes onoma-tsururi {
  0% { transform: translate(0%, 0%) rotate(0deg); opacity: 1; }
  75% { transform: translate(0%, 90%) rotate(7.5deg); opacity: 1; }
  100% { transform: translate(0%, 120%) rotate(10deg); opacity: 0; }
}

.onoma-tsururi {
  animation: onoma-tsururi 1s cubic-bezier(.55,0,1,.45) both;
}

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

Compare with similar motions