HTML的autoplay属性用于指定加载网页时音频/视频应自动开始播放。它是一个布尔属性,可以与和元素一起使用。
在和标签中使用autoplay属性,则当音频/视频一旦就绪就可马上开始自动播放。
语法
<element autoplay>
下面的示例说明了元素和元素中autoplay属性的使用。
元素和元素中autoplay属性的使用方法:
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> </head> <body style="text-align:center"> <h2>HTML video autoplay属性</h2> <video width="400" height="200" controls autoplay> <source src="http://img.php.cn/ueditor/php/upload/video/20190327/1553657855333112.mp4" type="video/mp4"> <source src="http://img.php.cn/ueditor/php/upload/video/20190327/1553657855333112.ogg" type="video/ogg"> </video> </body> </html>
评论前必须登录!
注册