加载 Spinner gif 图像时卡住
当我尝试离开页面时,我正在使用加载旋转器。我使用 gif 而不是 web kit 转换,因为我需要支持 Opera 和 Firefox 等浏览器。当我尝试离开页面时,旋转器工作了很短一段时间,然后就卡住了。然而,页面是定向的。是因为gif文件是4KB吗?如何解决这个问题?
I am using a loading spinner when I am trying to leave a page. I am using a gif instead of web kit transform because I need to support browsers like opera and firefox. When I try to leave the page, the spinner works for a very short while, then gets stuck. However, the page is directed. Is it because the gif file is 4KB ? How to solve this issue ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我以前遇到过这个。发生这种情况是因为,当您离开页面时,浏览器开始卸载所有资源。这包括 .gif 图像,并且它会停止动画。
我发现使用 JavaScript 制作动画与使用动画 .gif 相比,可以使动画持续时间更长。只需制作不同帧的精灵并执行类似的操作即可。在这个例子中,你的精灵帧将从左到右:
I've run into this before. It's happening because, when you navigate away from the page, the browser starts to unload all the resources. This includes the .gif image, and it stops the animation.
I've found that using JavaScript to do an animation versus using an animated .gif will keep the animation going longer. Just make a sprite of the different frames and do something like this. In this example your sprite frames would go from left to right: