<!DOCTYPE HTML>
<HTML xmlns="http://www.w3.org/1999/xhtml">
<head>
<Meta http-equiv="Content-Type" content="text/HTML; charset=utf-8" />
<Title></Title>
</head>
<body>
<div ID="divVIDeo"></div>
//因Js水平有限,不喜勿喷,全当没事看看,vIDeo是HTML5中的新控件,大家可以看看
<script type="text/JavaScript">
//mp4是ios、androID普遍支持的格式
function playVIDeo(opt) {
if (typeof (opt) == "undefined") {
alert("请传入必要参数!");
return;
}
if (typeof (opt.elemt) == "undefined") {
alert("请指定播放器要插入的对象!");
return;
}
if (typeof (opt.src) == "undefined") {
alert("请指定要播放视频的路径!");
return;
}
var _this = this;
_this.elemt = opt.elemt; //播放器要插入的对象
_this.src = opt.src; //视频的URL(必设)
_this.wIDth = opt.wIDth > 0 ? opt.wIDth + "px" : "100%"; //宽度(默认100%)
_this.height = opt.height > 0 ? opt.height + "px" : "100%"; //高度(默认100%)
_this.autoplay = opt.autoplay == "true" ? "autoplay" : ""; //自动播放(true为自动播放)
_this.poster = opt.poster; //视频封面,播放时的封面图片
_this.preload = opt.preload == "true" ? "preload" : ""; //预加载(true时启动加载)
_this.loop = opt.loop == "true" ? "loop" : ""; //循环播放(true时循环播放)
var str = "<vIDeo ID='playVIDeo' controls "; //根据设置的属性的值,拼写vIDeo控件
str += " wIDth='" + _this.wIDth + "' height='" + _this.height + "' " + _this.autoplay + " " + _this.preload + " " + _this.loop + " ";
if (typeof (_this.poster) != "undefined") {
str += " poster='" + _this.poster + "' >";
} else {
str += " > ";
}
str += " <source src='" + _this.src + "' />";
str += "</vIDeo>";
this.elemt.INNERHTML = str; //将str放到要插入的对象中
}
playVIDeo({
//所有参数,elemt和src为必填其他看需求怎么要求
//elemt为播放控件要插入的容器,src为视频文件地址,preload为预加载,autoplay是否页面进入就自动播放
//poster为播放前的遮照图片,loop为是否循环播放,wIDth和heigth默认100%
elemt: document.getElementByID("divVIDeo"),
src: "3.mp4",
preload: "true",
autoplay: "true",
poster: "",
loop: "true",
wIDth: "",
heigth:""
});
</script>
</body>
</HTML>
总结
以上是内存溢出为你收集整理的一个html5播放视频的video控件只支持android的默认格式mp4和3gp全部内容,希望文章能够帮你解决一个html5播放视频的video控件只支持android的默认格式mp4和3gp所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)