OnomaUI

さーっ の動き

さーっ の動きは、2つに分かれます。

saa2種類公式

意味ごとの動き

一気に広がり流れる

パネルを流し込む

左180%の所から、滑るように入って止まる。

時間
0.7s
くり返し
しない
速さの変化
cubic-bezier(.2,.8,.2,1)
動かすもの
位置・透明度 translate opacity
CSS を見る
@keyframes onoma-saa {
  0% { transform: translate(-180%, 0%); opacity: 0; }
  40% { transform: translate(-108%, 0%); opacity: 1; }
  100% { transform: translate(0%, 0%); opacity: 1; }
}

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

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

血の気が引く

青ざめて消える

4%上へ流れながら、すっと消える。

時間
0.9s
くり返し
しない
速さの変化
ease-in
動かすもの
位置・透明度 translate opacity
CSS を見る
@keyframes onoma-saa-2 {
  0% { transform: translate(0%, 0%); opacity: 1; }
  100% { transform: translate(0%, -4%); opacity: 0; }
}

.onoma-saa-2 {
  animation: onoma-saa-2 0.9s ease-in both;
}

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

近い動きと見比べる

同じ動きを表す言葉