大きな物が重く揺れる
注目を集める下の端を軸に、左右10°ずつ揺れ続ける。
- 時間
- 1.6s
- くり返し
- する
- 速さの変化
- ease-in-out
- 動かすもの
- 回転 rotate
CSS を見る
@keyframes onoma-yusayusa {
0% { transform: rotate(-10deg); }
100% { transform: rotate(10deg); }
}
.onoma-yusayusa {
animation: onoma-yusayusa 1.6s ease-in-out infinite alternate both;
transform-origin: 50% 100%;
}
/* 動きを減らす設定の人には、動かさない */
@media (prefers-reduced-motion: reduce) {
.onoma-yusayusa { animation: none; }
}