如何在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>
广告