重みできしみ続ける
負荷がかかっている横と縦に6%ずつ、交互に伸び縮みし続ける。
- 時間
- 0.8s
- くり返し
- する
- 速さの変化
- ease-in-out
- 動かすもの
- 大きさ scale
CSS を見る
@keyframes onoma-gishigishi {
0% { transform: scale(1.06, 0.94); }
100% { transform: scale(0.94, 1.06); }
}
.onoma-gishigishi {
animation: onoma-gishigishi 0.8s ease-in-out infinite alternate both;
}
/* 動きを減らす設定の人には、動かさない */
@media (prefers-reduced-motion: reduce) {
.onoma-gishigishi { animation: none; }
}