急に曲がってゆがむ
押した時の柔らかい反応横に28%伸びて縦に縮み、ぷるんと何度か揺れて戻る。
- 時間
- 0.8s
- くり返し
- しない
- 速さの変化
- ease-in-out
- 動かすもの
- 大きさ scale
CSS を見る
@keyframes onoma-gunya {
0% { transform: scale(1, 1); }
25% { transform: scale(1.28, 0.75); }
45% { transform: scale(0.83, 1.17); }
65% { transform: scale(1.08, 0.93); }
82% { transform: scale(0.97, 1.03); }
100% { transform: scale(1, 1); }
}
.onoma-gunya {
animation: onoma-gunya 0.8s ease-in-out both;
}
/* 動きを減らす設定の人には、動かさない */
@media (prefers-reduced-motion: reduce) {
.onoma-gunya { animation: none; }
}