·您当前的位置:首页 > 技术教程 > Html5技术 >

[html5]html5播放视频的video控件只支持android的默认格式mp4和3

时间:2014-11-12 11:55酷播
写了个html5播放视频的video控件,只支持mp4和3gp(android和ios默认支持的格式就写了这个) ,需要的朋友可以参考下

写了个html5播放视频的video控件,只支持mp4和3gp(android和ios默认支持的格式就写了这个) ,需要的朋友可以参考下

复制代码 代码如下:

  1. <!DOCTYPE html> 
  2. <html xmlns="http://www.w3.org/1999/xhtml"> 
  3. <head> 
  4. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 
  5. <title></title> 
  6. </head> 
  7. <body> 
  8. <div></div> 
  9. //因js水平有限,不喜勿喷,全当没事看看,video是html5中的新控件,大家可以看看 
  10. <script type="text/javascript"> 
  11. //mp4是ios、android普遍支持的格式 
  12. function playVideo(opt) { 
  13. if (typeof (opt) == "undefined") { 
  14. alert("请传入必要参数!"); 
  15. return; 
  16. if (typeof (opt.elemt) == "undefined") { 
  17. alert("请指定播放器要插入的对象!"); 
  18. return; 
  19. if (typeof (opt.src) == "undefined") { 
  20. alert("请指定要播放视频的路径!"); 
  21. return; 
  22. var _this = this; 
  23. _this.elemt = opt.elemt; //播放器要插入的对象 
  24. _this.src = opt.src; //视频的URL(必设) 
  25. _this.width = opt.width > 0 ? opt.width + "px" : "100%"; //宽度(默认100%) 
  26. _this.height = opt.height > 0 ? opt.height + "px" : "100%"; //高度(默认100%) 
  27. _this.autoplay = opt.autoplay == "true" ? "autoplay" : ""; //自动播放(true为自动播放) 
  28. _this.poster = opt.poster; //视频封面,播放时的封面图片 
  29. _this.preload = opt.preload == "true" ? "preload" : ""; //预加载(true时启动加载) 
  30. _this.loop = opt.loop == "true" ? "loop" : ""; //循环播放(true时循环播放) 
  31. var str = "<video controls "; //根据设置的属性的值,拼写video控件 
  32. str += " " + _this.autoplay + " " + _this.preload + " " + _this.loop + " "; 
  33. if (typeof (_this.poster) != "undefined") { 
  34. str += " poster='" + _this.poster + "' >"; 
  35. } else { 
  36. str += " > "; 
  37. str += " <source src='" + _this.src + "' />"; 
  38. str += "</video>"; 
  39. this.elemt.innerHTML = str; //将str放到要插入的对象中 
  40. playVideo({ 
  41. //所有参数,elemt和src为必填其他看需求怎么要求 
  42. //elemt为播放控件要插入的容器,src为视频文件地址,preload为预加载,autoplay是否页面进入就自动播放 
  43. //poster为播放前的遮照图片,loop为是否循环播放,width和heigth默认100% 
  44. elemt: document.getElementById("divVideo"), 
  45. src: "3.mp4", 
  46. preload: "true", 
  47. autoplay: "true", 
  48. poster: "", 
  49. loop: "true", 
  50. width: "", 
  51. heigth:"" 
  52. }); 
  53. </script> 
  54. </body> 
  55. </html>  

 

热门文章推荐

请稍候...

保利威视云平台-轻松实现点播直播视频应用

酷播云数据统计分析跨平台播放器