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。问题是动画 gif 在重定向发生时冻结。有解决方法吗?也许 css3 动画而不是动画 gif?
谢谢。
解决此问题的一个技巧是将图像设置为每隔几毫秒“重新加载”一次。这给出了 gif 仍在动画中的效果。
setTimeout('document.images["myImageId"].src="../images/ajax-loader.gif"', 200);