如何根据加载的视频/图像的百分比制作加载器 gif 动画?
我需要为加载圆 1 整轮制作动画,并随着图像的加载而进行。它应该在加载开始时开始回合装载完成后完成一轮。
我怎样才能做到这一点?
I need to animate a loading circle 1 complete round progressing with the loading of image . It should start the round when loading starts & complete one round when the loading is done.
How can I do that ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
据我所知,这是不可能的 - 浏览器不会返回任何有关 HTML 图像加载进度的实时信息,而您可以使用这些信息来驱动动画。
它所返回的只是可以附加到图像的
load
事件。当图像完全加载时,它将触发。As far as I can see, this is not possible - the browser doesn't return any live information about the loading progress of a HTML image that you could use to power an animation.
All it does return is the
load
event that you can attach to an image. That will fire when an image is completely loaded.