如何确保我的 GIF 即使在 document.location="" 之后仍能保持动画效果 已运行

发布于 2024-07-18 05:36:34 字数 269 浏览 14 评论 0 原文

采用以下 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>

当我单击链接时,图标停止。

Take the following 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>

When I click the link the icon stops.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

最初的梦 2024-07-25 05:36:35

是的,当浏览器转到新页面时,现有页面的所有执行都会按设计停止。 如果您希望当前页面继续运行,则需要使用 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.

咋地 2024-07-25 05:36:35

为什么使用 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.

往日情怀 2024-07-25 05:36:34

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文