HTML5 视频播放 - 图像预加载

发布于 2024-12-18 21:00:21 字数 128 浏览 1 评论 0 原文

我正在使用视频标签和 jQuery 来显示 HTML5 视频播放。

如何在视频仍在加载显示时显示图像?

我会为此使用 jQuery..

提前致谢!

PD:视频预加载时显示图像。

I am using video tags and jQuery to display a HTML5 video playback.

How can I show an image while the video is still loading for displaying?

I would use jQuery for this..

Thanks in advance!

PD: Display an image when the video preloads.

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

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

发布评论

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

评论(1

勿挽旧人 2024-12-25 21:00:21

不需要 JQuery 来实现这一点,因为 html5 video 标签带有自己的海报属性。您可以使用它来指定视频加载时应显示的图像。例如,如果您有一个名为 myImage.jpg 的图像,您可以执行以下操作:。请参阅此处了解更多信息:

https://www.w3.org/wiki/ HTML/Elements/video#HTML_Attributes

There is no need for JQuery to achieve this as the html5 video tag comes with its own poster attribute. You can use that to specify what image should be displayed while the video loads. For instance if you have an image called myImage.jpg you can do the following: <video controls="controls" poster="myImage.jpg">. Refer here for more info:

https://www.w3.org/wiki/HTML/Elements/video#HTML_Attributes

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