如何在 HTML 中指定音频/视频在播放完毕后重新开始播放?
使用 loop 属性指定音频/视频会重新开始播放。你可以尝试运行下面的代码实现 loop 属性 −
示例
<!DOCTYPE HTML> <html> <body> <video width = "300" height = "200" controls loop> <source src = "/html5/foo.ogg" type = "video/ogg" /> <source src = "/html5/foo.mp4" type = "video/mp4" /> Your browser does not support the video element. </video> </body> </html>
广告