ねばりつく
くっつく表現横と縦に10%ずつ、交互に伸び縮みし続ける。
- 時間
- 1.2s
- くり返し
- する
- 速さの変化
- ease-in-out
- 動かすもの
- 大きさ scale
CSS を見る
@keyframes onoma-netoneto {
0% { transform: scale(1.1, 0.9); }
100% { transform: scale(0.9, 1.1); }
}
.onoma-netoneto {
animation: onoma-netoneto 1.2s ease-in-out infinite alternate both;
}
/* 動きを減らす設定の人には、動かさない */
@media (prefers-reduced-motion: reduce) {
.onoma-netoneto { animation: none; }
}