力を込めて押し込む
長押しで決定押すと26%小さく沈み、4%ふくらんでから元の大きさに戻る。
- 時間
- 0.7s
- くり返し
- しない
- 速さの変化
- ease-out
- 動かすもの
- 大きさ scale
CSS を見る
@keyframes onoma-gugu {
0% { transform: scale(1, 1); }
35% { transform: scale(0.74, 0.74); animation-timing-function: ease-out; }
70% { transform: scale(1.04, 1.04); animation-timing-function: ease-in-out; }
100% { transform: scale(1, 1); }
}
.onoma-gugu {
animation: onoma-gugu 0.7s ease-out both;
}
/* 動きを減らす設定の人には、動かさない */
@media (prefers-reduced-motion: reduce) {
.onoma-gugu { animation: none; }
}