Home > Article > Web Front-end > Create a web player with Video.js (graphic tutorial)
The following is the Video.js web player I compiled for you. Interested students can take a look.
1. The first step
<link href="video-js.css" rel="stylesheet" type="text/css"> <!-- video.js must be in the <head> for older IEs to work. --> <script src="video.js"></script>
2. The second step
<script> videojs.options.flash.swf = "video-js.swf"; </script>
3. The third step
<video id="example_video_1" class="video-js vjs-default-skin vjs-big-play-centered" controls preload="none" width="640" height="480" data-setup="{}"> <source src="wangdeshun.mp4" type="video/mp4"/> <p class="vjs-no-js">To view this video please enable JavaScript, and consider upgrading to a web browser that <a href="http://videojs.com/html5-video-support/" target="_blank">supports HTML5 video</a> </p> </video>
4. Step 4
<script> var player = videojs("example_video_1"); // 检测播放时间 player.on('timeupdate', function () { console.log('当前播放时间:' = player.currentTime()); } }); // 开始或恢复播放 player.on('play', function() { console.log('开始/恢复播放'); }); // 暂停播放 player.on('pause', function() { console.log('暂停播放'); }); /在 <head> 中声明 <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1"> setTimeout(function(){ player.pause(); },10000); </script>
So you can play online videos. Isn't it very convenient?
Detect whether the video has been played
player.on('timeupdate', function () { // 如果 currentTime() === duration(),则视频已播放完毕 if (player.duration() != 0 && player.currentTime() === player.duration()) { // 播放结束 } });
If it is needed for mobile phone use
在 <head> 中声明 <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
The above is the Video.js web player I compiled for everyone. I hope it will be useful to everyone in the future helpful.
Related articles:
How to automatically convert input numbers into currency format in Javascript (code attached)
How to use vue.js to implement price formatting (code attached)
js native code to implement two-way data binding (can be used directly, already encapsulated)
The above is the detailed content of Create a web player with Video.js (graphic tutorial). For more information, please follow other related articles on the PHP Chinese website!