gpt4 book ai didi

internet-explorer - IE 停止时的 GIF 动画

转载 作者:行者123 更新时间:2023-11-28 08:30:55 25 4
gpt4 key购买 nike

有没有人知道在您单击链接或在 IE 中的页面上提交表单后使动画 GIF 继续动画的变通方法?这在其他浏览器中工作正常。

谢谢。

最佳答案

公认的解决方案对我不起作用。

经过更多研究,我发现了 this workaround ,它确实有效。

这是它的要点:

function showProgress() {
var pb = document.getElementById("progressBar");
pb.innerHTML = '<img src="./progress-bar.gif" width="200" height ="40"/>';
pb.style.display = '';
}

在你的 html 中:

<input type="submit" value="Submit" onclick="showProgress()" />
<div id="progressBar" style="display: none;">
<img src="./progress-bar.gif" width="200" height ="40"/>
</div>

所以当提交表单时,<img/>标记已插入,并且由于某种原因它不受 ie 动画问题的影响。

在 Firefox、ie6、ie7 和 ie8 中测试。

关于internet-explorer - IE 停止时的 GIF 动画,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28271917/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com