OnomaUI

ぽーん の動き

「遠くへ放り投げる」を表す動きです。

poon1種類公式

見本

遠くへ放り投げる

送信・共有する

少し沈んでから、上へ350%飛んでいって消える。

時間
0.8s
くり返し
しない
速さの変化
cubic-bezier(.6,0,.9,.4)
動かすもの
位置・大きさ・透明度 translate scale opacity
CSS を見る
@keyframes onoma-poon {
  0% { transform: translate(0%, 0%) scale(1, 1); opacity: 1; animation-timing-function: ease-out; }
  20% { transform: translate(0%, 8%) scale(1.08, 0.9); opacity: 1; }
  100% { transform: translate(0%, -350%) scale(0.92, 1.12); opacity: 0; }
}

.onoma-poon {
  animation: onoma-poon 0.8s cubic-bezier(.6,0,.9,.4) both;
}

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

近い動きと見比べる