我们如何在 HTML 中指定音/视频准备好后立即开始播放?
使用 autoplay 属性设置音频或视频在页面加载时自动播放。
示例
你可以尝试运行以下代码在 HTML 中实现 autoplay 属性 −
<!DOCTYPE HTML> <html> <body> <video width = "300" height = "200" controls autoplay> <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>
广告