毛がたっぷり揺れる
動物キャラクター上の端を軸に、左右10°ずつゆっくり揺れ続ける。
- 時間
- 1.2s
- くり返し
- する
- 速さの変化
- ease-in-out
- 動かすもの
- 回転 rotate
CSS を見る
@keyframes onoma-fusafusa {
0% { transform: rotate(-10deg); }
100% { transform: rotate(10deg); }
}
.onoma-fusafusa {
animation: onoma-fusafusa 1.2s ease-in-out infinite alternate both;
transform-origin: 50% 0%;
}
/* 動きを減らす設定の人には、動かさない */
@media (prefers-reduced-motion: reduce) {
.onoma-fusafusa { animation: none; }
}