如何构建 HTML 5 视频播放列表?
嗨<我想知道有人知道详细描述如何在 HTML 5 中构建视频播放列表的教程吗?我还希望这些视频以随机顺序播放。
Hi< I was wondering would anybody know of tutorials describing, in detail, how to build a video playlist in HTML 5? I also would like these videos to play in a random order.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我在这里为此创建了一个 JS 小提琴:
http://jsfiddle.net/Barzi/Jzs6B/9/
首先,您的 HTML 标记如下所示:
其次,通过 JQuery 库的 JavaScript 代码将如下所示:
最后但并非最不重要的一点是,您的 CSS:
I created a JS fiddle for this here:
http://jsfiddle.net/Barzi/Jzs6B/9/
First, your HTML markup looks like this:
Second, your JavaScript code via JQuery library will look like this:
And last but not least, your CSS:
你可以用这个。
完美且轻松。
You can use this.
perfect and easily.
不使用任何框架或 CSS 直接回答问题:
只需在 select 中定义文件即可。页面加载时选择一个文件,它将从可用选项中随机选择下一个视频。
To directly answer the question without any frameworks or CSS:
Just define the files in the select. Choose a file when the page loads and it will randomly select the next video from the available options.