Video.js 是一个通用的在网页上嵌入视频播放器的 JS 库,Video.js 自动检测浏览器对 HTML5 的支持情况,如果不支持 HTML5 则自动使用 Flash 播放器。
使用方法
在页面中引用video-js.cs样式文件和video.js
<link href="//vjs.zencdn.net/5.8/video-js.min.css" rel="stylesheet"> <script src="//vjs.zencdn.net/5.8/video.min.js"></script>
设置flash路径,Video.js会在不支持html5的浏览中使用flash播放视频文件
<script> videojs.options.flash.swf = "video-js.swf"; </script>
html
poster=”**”播放初始图。可使用三种视频格式,根据所需要格式选择对应的。
<video id="really-cool-video" class="video-js vjs-default-skin" controls preload="auto" width="640" height="264" poster="really-cool-video-poster.jpg" data-setup='{}'> <source src="really-cool-video.mp4" type="video/mp4"> <source src="really-cool-video.webm" type="video/webm"> <p class="vjs-no-js"> 要查观看此视频,请启用JavaScript,并考虑升级到Web浏览器 that <a href="http://videojs.com/html5-video-support/" target="_blank">supports HTML5 video</a> </p> </video>
设置自动播放将下面代码加到html中代码后面
<script type="text/javascript"> var myPlayer = videojs('example_video1'); videojs("example_video1").ready(function(){ var myPlayer = this; myPlayer.play(); }); </script>
-END-