如何确保我的 GIF 即使在 document.location="" 之后仍能保持动画效果 已运行
采用以下 HTML:
<img src="/any-animated-gif.gf" alt="" />
<br /><br />
<a href="#" onclick="document.location='/anything-that-takes-a-few-seconds-to-load.html';return false;">Click Here</a>
当我单击链接时,图标停止。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
是的,当浏览器转到新页面时,现有页面的所有执行都会按设计停止。 如果您希望当前页面继续运行,则需要使用 AJAX 技术。
Yes, when the browser is going to a new page, all execution of the existing page stops by design. If you wish the current page to continue to function you need to use AJAX techniques.
为什么使用 Documnet.Location 而不是 href?
您无法更改浏览器的行为。 一旦加载不同的页面,当前页面将始终停止。
Why are you using Documnet.Location instead of href?
You cannot change the browser's behavior. Once its loading a different page the current page will always stop.
http://elliottback.com/wp/animated-gif-stops-javascript -click/
根据该链接,在使用 javascript 进行重定向后重新分配图像标记的 src 将使图像保持动画状态。 不知道这在 Firefox 中是如何运作的。
http://elliottback.com/wp/animated-gif-stops-javascript-click/
According to that link, reassigning the src of the image tag after you have made the redirect with javascript will keep the image animated. Not sure how this acts in firefox.