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"); });