身にしみて迫る
締め切りが迫る106%までふくらんでは戻るのを、一定のリズムでくり返す。
- 時間
- 1.4s
- くり返し
- する
- 速さの変化
- ease-in-out
- 動かすもの
- 大きさ scale
CSS を見る
@keyframes onoma-hishihishi {
0% { transform: scale(1, 1); }
50% { transform: scale(1.06, 1.06); }
100% { transform: scale(1, 1); }
}
.onoma-hishihishi {
animation: onoma-hishihishi 1.4s ease-in-out infinite both;
}
/* 動きを減らす設定の人には、動かさない */
@media (prefers-reduced-motion: reduce) {
.onoma-hishihishi { animation: none; }
}