OnomaUI

つるっ の動き

「足をすべらせる」を表す動きです。

tsuru1種類公式

見本

足をすべらせる

項目を落として消す

30°傾きながら、下へ140%落ちて消える。

時間
0.46s
くり返し
しない
速さの変化
cubic-bezier(.55,0,1,.45)
動かすもの
位置・回転・透明度 translate rotate opacity
CSS を見る
@keyframes onoma-tsuru {
  0% { transform: translate(0%, 0%) rotate(0deg); opacity: 1; }
  75% { transform: translate(0%, 105%) rotate(22.5deg); opacity: 1; }
  100% { transform: translate(0%, 140%) rotate(30deg); opacity: 0; }
}

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

/* 動きを減らす設定の人には、消えるだけ */
@keyframes onoma-tsuru-fade { from { opacity: 1; } to { opacity: 0; } }
@media (prefers-reduced-motion: reduce) {
  .onoma-tsuru { animation: onoma-tsuru-fade 0.2s ease-out both; }
}

近い動きと見比べる