Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
GIF画像をアンカーのホバー効果として設定すると、表示されていなくても(背景として設定されていなくても)アニメーションのままになるため、たとえばアニメーションが途中で開始されますが、これにより素敵な効果が失われますのために使用される..
助言がありますか?
前もって感謝します
html で gif 画像のアニメーションを制御することはできません。ただし、これを回避するには、マウスオーバー時に gif 画像を静止画像に置き換えるか、jquery または javascript を使用した他のイベントに置き換えます。CSSだけではできません。例:
$("#imageGif").hover( function() { $(this).attr("src", "/image.gif"); }, function() { $(this).attr("src", "/image.png"); });