实例
启用自动播放,并重载视频:
myVid=document.getElementById( video1 myVid.autoplay=true;myVid.load();
定义和用法
autoplay 属性设置或返回音视频是否在加载后即开始播放。
浏览器支持
所有主流浏览器都支持 autoplay 属性。
注释:Internet Explorer 8 或更早的浏览器不支持该属性。
语法
设置 autoplay 属性:
audio|video.autoplay=true|false
返回 autoplay 属性:
audio|video.autoplay
属性值
值描述true指示音视频在加载完成后随即播放。false默认。指示音视频不应在加载后立即播放。技术细节
返回值布尔值。true|false默认值:falsehtml5 video使用autoplay属性时,声音混乱
页面代码
Index.html
html xmlns= http://www.w3.org/1999/xhtml head title test /title meta charset= utf-8 / script src= js/jquery-1.4.4.min.js type= text/javascript /script script src= js/thml5.js type= text/javascript /script script type= text/javascript window.onload=function(){$( #channel1 ).click(function(){setConfig( test1.mp4 $( #channel2 ).click(function(){setConfig( test2.mp4 $( #channel3 ).click(function(){setConfig( test3.mp4
div id= test1 >js代码
html5.jsvar HTML5MediaService= { getDefaultConfig: function () { return $.extend({}, {width: 100% , height: 100% , controls: controls , autoplay: autoplay }); create:function(jo,cfg){ this.videoId = videojs_ + new Date().getTime().toString(); var videoJo = $( video + id= + this.videoId + + src= + cfg.url + controls= + cfg.controls + autoplay= + cfg.autoplay + width= + cfg.width + height= + cfg.height + preload=none + /video videoJo.appendTo(jo.empty()); }我的解决方案:
取掉autoplay,可以使用play()函数来达到自动播放功能;
以上就是html5中设置或返回音视频是否在加载后即开始播放的属性autoplay的详细内容,其它编程语言
郑重声明:本文版权归原作者所有,转载文章仅为传播更多信息之目的,如作者信息标记有误,请第一时间联系我们修改或删除,多谢。
新闻热点
疑难解答