OnomaUI

ちくり の動き

「軽く刺して残る」を表す動きです。

chikuri1種類公式

見本

軽く刺して残る

さりげない指摘

押すと8%小さく沈み、2%ふくらんでから元の大きさに戻る。

時間
0.6s
くり返し
しない
速さの変化
ease-out
動かすもの
大きさ scale
CSS を見る
@keyframes onoma-chikuri {
  0% { transform: scale(1, 1); }
  35% { transform: scale(0.92, 0.92); animation-timing-function: ease-out; }
  70% { transform: scale(1.02, 1.02); animation-timing-function: ease-in-out; }
  100% { transform: scale(1, 1); }
}

.onoma-chikuri {
  animation: onoma-chikuri 0.6s ease-out both;
}

/* 動きを減らす設定の人には、動かさない */
@media (prefers-reduced-motion: reduce) {
  .onoma-chikuri { animation: none; }
}

近い動きと見比べる