自由にくつろぐ
解放感のある完了14%ふくらみながら少し薄れ、ゆっくり戻るのをくり返す。
- 時間
- 2.8s
- くり返し
- する
- 速さの変化
- ease-in-out
- 動かすもの
- 大きさ scale
CSS を見る
@keyframes onoma-nobinobi {
0% { transform: scale(1, 1); }
100% { transform: scale(1.14, 1.14); }
}
.onoma-nobinobi {
animation: onoma-nobinobi 2.8s ease-in-out infinite alternate both;
}
/* 動きを減らす設定の人には、動かさない */
@media (prefers-reduced-motion: reduce) {
.onoma-nobinobi { animation: none; }
}