你是否有一个梦想?用JavaScript开发一款自定义配置视频播放器

开发 前端
沉寂了一周了,打算把这几天的结果呈现给大家。这几天抽空就一直在搞一个自定义视频播放器,为什么会有如此想法?是因为之前看一些学习视频网站时,看到它们做的视频播放器非常Nice!于是,就打算抽空开发一款属于自己的视频播放器。话不多说,一起来实战吧!

[[358845]]

前言

沉寂了一周了,打算把这几天的结果呈现给大家。这几天抽空就一直在搞一个自定义视频播放器,为什么会有如此想法?是因为之前看一些学习视频网站时,看到它们做的视频播放器非常Nice!于是,就打算抽空开发一款属于自己的视频播放器。话不多说,一起来实战吧!

项目展示


(这只是一张图片哦~)

这张图就是我们的成品,还等什么?赶紧来实战吧!

实战

我会把完整源码放在github上,欢迎来star,地址在文末。

首先,我们会使用最原生的JavaScript来实现,老大哥肯定要打头阵啊!

一、JavaScript

1.iconfont.css:阿里字体图标文件,你可以在上面找到很多漂亮的图标。

2.index.css:项目样式文件。

3.index.js:项目逻辑文件。

  1. <!DOCTYPE html> 
  2. <html lang="en"
  3.   <head> 
  4.     <meta charset="UTF-8" /> 
  5.     <meta name="viewport" content="width=device-width, initial-scale=1.0" /> 
  6.     <title>VamVideo(原生js版)</title> 
  7.     <link rel="stylesheet" href="./css/iconfont/iconfont.css" /> 
  8.     <link rel="stylesheet" href="./css/index.css" /> 
  9.   </head> 
  10.   <body> 
  11.     <div class="video-box"
  12.       <video class="video-player" preload="auto" poster="./img/bg.png"
  13.         <source 
  14.           src="https://mos-vod-drcn.dbankcdn.cn/P_VT/video_injection/A91343E9D/v3/9AB0A7921049102362779584128/MP4Mix_H.264_1920x1080_6000_HEAAC1_PVC_NoCut.mp4" 
  15.         /> 
  16.         <source /> 
  17.       </video> 
  18.       <div class="bottom-tool"
  19.         <div class="pv-bar"
  20.           <div class="pv-played"></div> 
  21.           <div class="pv-dot"></div> 
  22.         </div> 
  23.         <div class="pv-controls"
  24.           <div class="pc-con-l"
  25.             <div class="play-btn"
  26.               <i class="iconfont icon-bofang"></i> 
  27.               <i class="iconfont icon-zanting hide"></i> 
  28.             </div> 
  29.             <div class="pv-time"
  30.               <span class="pv-currentTime">00:00:00</span> 
  31.               <span>/</span> 
  32.               <span class="pv-duration">00:00:00</span> 
  33.             </div> 
  34.           </div> 
  35.           <div class="pc-con-r"
  36.             <div class="pv-listen ml"
  37.               <div class="pv-yl"
  38.                 <p class="pv-ol"></p> 
  39.                 <p class="pv-bg"></p> 
  40.               </div> 
  41.               <div class="pv-iconyl"
  42.                 <i class="iconfont icon-yinliang"></i> 
  43.                 <i class="iconfont icon-jingyin hide"></i> 
  44.               </div> 
  45.             </div> 
  46.             <div class="pv-speed ml"
  47.               <p class="pv-spnum">1x</p> 
  48.               <ul class="selectList"
  49.                 <li>0.5x</li> 
  50.                 <li>1x</li> 
  51.                 <li>1.25x</li> 
  52.                 <li>1.5x</li> 
  53.                 <li>2x</li> 
  54.               </ul> 
  55.             </div> 
  56.             <div class="pv-screen ml"
  57.               <i class="iconfont icon-quanping"></i> 
  58.               <i class="iconfont icon-huanyuan hide"></i> 
  59.             </div> 
  60.           </div> 
  61.         </div> 
  62.       </div> 
  63.     </div> 
  64.     <script src="./js/index.js"></script> 
  65.   </body> 
  66. </html> 

 我们主要看下逻辑文件index.js。

  1. let timer = null
  2. let disX = 0; 
  3. let disL = 0; 
  4. function $(el) { 
  5.   return document.querySelector(el); 
  6. function showEl(el) { 
  7.   $(el).style.display = "block"
  8. function hideEl(el) { 
  9.   $(el).style.display = "none"
  10. function setVp(w, h) { 
  11.   $(".video-player").style.width = w + "px"
  12.   $(".video-player").style.height = h + "px"
  13.   $(".video-box").style.width = w + "px"
  14.   $(".video-box").style.height = h + "px"
  15.   $(".pv-bar").style.width = w + "px"
  16. // 时间格式化 
  17. function changeTime(iNum) { 
  18.   let iN = parseInt(iNum); 
  19.   const iH = toZero(Math.floor(iN / 3600)); 
  20.   const iM = toZero(Math.floor((iN % 3600) / 60)); 
  21.   const iS = toZero(Math.floor(iN % 60)); 
  22.   return iH + ":" + iM + ":" + iS
  23. // 整0处理 
  24. function toZero(num) { 
  25.   if (num <= 9) { 
  26.     return "0" + num; 
  27.   } else { 
  28.     return "" + num; 
  29.   } 
  30. // 底部控制栏 
  31. $(".video-box").onmouseenter = function () { 
  32.   $(".bottom-tool").style.bottom = "0px"
  33. }; 
  34. $(".video-box").onmouseleave = function () { 
  35.   $(".bottom-tool").style.bottom = "-45px"
  36. }; 
  37.  
  38. // 倍速播放栏(显示/隐藏) 
  39. $(".pv-spnum").onmouseover = function () { 
  40.   showEl(".selectList"); 
  41. }; 
  42. $(".pv-controls").onmouseleave = function () { 
  43.   hideEl(".selectList"); 
  44. }; 
  45.  
  46. // 播放/暂停 
  47. $(".play-btn").onclick = function () { 
  48.   if ($(".video-player").paused) { 
  49.     $(".video-player").play(); 
  50.     hideEl(".icon-bofang"); 
  51.     showEl(".icon-zanting"); 
  52.     nowTime(); 
  53.     timer = setInterval(nowTime, 1000); 
  54.   } else { 
  55.     $(".video-player").pause(); 
  56.     showEl(".icon-bofang"); 
  57.     hideEl(".icon-zanting"); 
  58.     clearInterval(timer); 
  59.   } 
  60. }; 
  61.  
  62. // 总时长 
  63. $(".video-player").oncanplay = function () { 
  64.   $(".pv-duration").innerHTML = changeTime($(".video-player").duration); 
  65. }; 
  66.  
  67. // 播放结束 
  68. $(".video-player").onended = function (params) { 
  69.   showEl(".icon-bofang"); 
  70.   hideEl(".icon-zanting"); 
  71. }; 
  72.  
  73. // 播放时长 
  74. function nowTime() { 
  75.   $(".pv-currentTime").innerHTML = changeTime($(".video-player").currentTime); 
  76.   let scale = $(".video-player").currentTime / $(".video-player").duration; 
  77.   let w = $(".pv-bar").offsetWidth - $(".pv-dot").offsetWidth; 
  78.   $(".pv-dot").style.left = scale * w + "px"
  79.   $(".pv-played").style.width = scale * w + "px"
  80.  
  81. // 静音/取消静音 
  82. $(".pv-iconyl").onclick = function () { 
  83.   if ($(".video-player").muted) { 
  84.     $(".video-player").volume = 1; 
  85.     hideEl(".icon-jingyin"); 
  86.     showEl(".icon-yinliang"); 
  87.     $(".video-player").muted = false
  88.   } else { 
  89.     $(".video-player").volume = 0; 
  90.     showEl(".icon-jingyin"); 
  91.     hideEl(".icon-yinliang"); 
  92.     $(".video-player").muted = true
  93.   } 
  94. }; 
  95. let isfullScreen = false
  96. // 全屏 
  97. $(".pv-screen").onclick = function () { 
  98.   const w = document.documentElement.clientWidth || document.body.clientWidth; 
  99.   const h = document.documentElement.clientHeight || document.body.clientHeight; 
  100.   isfullScreen = !isfullScreen; 
  101.   if (isfullScreen) { 
  102.     setVp(w, h); 
  103.     hideEl(".icon-quanping"); 
  104.     showEl(".icon-huanyuan"); 
  105.   } else { 
  106.     setVp(900, 480); 
  107.     showEl(".icon-quanping"); 
  108.     hideEl(".icon-huanyuan"); 
  109.   } 
  110. }; 
  111. // 播放进度条 
  112. $(".pv-dot").onmousedown = function (ev) { 
  113.   let ev1 = ev || window.event; 
  114.   disX = ev1.clientX - $(".pv-dot").offsetLeft; 
  115.   document.onmousemove = function (ev) { 
  116.     let ev2 = ev || window.event; 
  117.     let L = ev2.clientX - disX; 
  118.     if (L < 0) { 
  119.       L = 0; 
  120.     } else if (L > $(".pv-bar").offsetWidth - $(".pv-dot").offsetWidth) { 
  121.       L = $(".pv-bar").offsetWidth - $(".pv-dot").offsetWidth; 
  122.     } 
  123.     $(".pv-dot").style.left = L + "px"
  124.  
  125.     let scale = L / ($(".pv-bar").offsetWidth - $(".pv-dot").offsetWidth); 
  126.     $(".video-player").currentTime = scale * $(".video-player").duration; 
  127.     nowTime(); 
  128.   }; 
  129.  
  130.   document.onmouseup = function () { 
  131.     document.onmousemove = null
  132.   }; 
  133.  
  134.   return false
  135. }; 
  136. // 音量控制 
  137. $(".pv-ol").onmousedown = function (ev) { 
  138.   let ev1 = ev || window.event; 
  139.   disL = ev1.clientX - $(".pv-ol").offsetLeft; 
  140.   document.onmousemove = function (ev) { 
  141.     let ev2 = ev || window.event; 
  142.     let L = ev2.clientX - disL; 
  143.     if (L < 0) { 
  144.       L = 0; 
  145.     } else if (L > $(".pv-yl").offsetWidth - $(".pv-ol").offsetWidth) { 
  146.       L = $(".pv-yl").offsetWidth - $(".pv-ol").offsetWidth; 
  147.     } 
  148.     $(".pv-ol").style.left = L + "px"
  149.     let scale = L / ($(".pv-yl").offsetWidth - $(".pv-ol").offsetWidth); 
  150.     $(".pv-bg").style.width = $(".pv-ol").offsetLeft + "px"
  151.     if ($(".pv-ol").offsetLeft !== 0) { 
  152.       showEl(".icon-yinliang"); 
  153.       hideEl(".icon-jingyin"); 
  154.     } else { 
  155.       showEl(".icon-jingyin"); 
  156.       hideEl(".icon-yinliang"); 
  157.     } 
  158.     $(".video-player").volume = scale; 
  159.   }; 
  160.  
  161.   document.onmouseup = function () { 
  162.     document.onmousemove = null
  163.   }; 
  164.  
  165.   return false
  166. }; 
  167. // 播放速度 
  168. $(".selectList").onclick = function (e) { 
  169.   let ev = e || window.event; 
  170.   hideEl(".selectList"); 
  171.   $(".pv-spnum").innerText = ev.target.innerText; 
  172.   const value = ev.target.innerText.replace("x"""); 
  173.   $(".video-player").playbackRate = value; 
  174. }; 

这样写是可以实现一个视频播放器,你可以通过改样式文件还有部分逻辑文件来实现一个自定义配置视频播放器,但是这种效果不太好,所以我们将通过使用Es6中的Class类来重写这个自定义配置视频播放器。

二、Class类

1.vp.js:class类逻辑文件。

  1. <!DOCTYPE html> 
  2. <html lang="en"
  3.   <head> 
  4.     <meta charset="UTF-8" /> 
  5.     <meta name="viewport" content="width=device-width, initial-scale=1.0" /> 
  6.     <title>VamVideo(Class类版)</title> 
  7.     <link rel="stylesheet" href="./css/iconfont/iconfont.css" /> 
  8.     <link rel="stylesheet" href="./css/index.css" /> 
  9.   </head> 
  10.   <body> 
  11.     <div class="video-box" onmouseenter="vp.bottomTup()" onmouseleave="vp.bottomTdow()"
  12.       <video class="video-player" oncanplay="vp.useOnplay()" onended="vp.useEnd()"></video> 
  13.       <div class="bottom-tool"
  14.         <div class="pv-bar"
  15.           <div class="pv-played"></div> 
  16.           <div class="pv-dot" onmousedown="vp.useTime()"></div> 
  17.         </div> 
  18.         <div class="pv-controls" onmouseleave="vp.selectListHide()"
  19.           <div class="pc-con-l"
  20.             <div class="play-btn" onclick="vp.usePlay()"
  21.               <i class="iconfont icon-bofang"></i> 
  22.               <i class="iconfont icon-zanting hide"></i> 
  23.             </div> 
  24.             <div class="pv-time"
  25.               <span class="pv-currentTime">00:00:00</span> 
  26.               <span>/</span> 
  27.               <span class="pv-duration">00:00:00</span> 
  28.             </div> 
  29.           </div> 
  30.           <div class="pc-con-r"
  31.             <div class="pv-listen ml"
  32.               <div class="pv-yl"
  33.                 <p class="pv-ol" onmousedown="vp.useListen()"></p> 
  34.                 <p class="pv-bg"></p> 
  35.               </div> 
  36.               <div class="pv-iconyl" onclick="vp.useVolume()"
  37.                 <i class="iconfont icon-yinliang"></i> 
  38.                 <i class="iconfont icon-jingyin hide"></i> 
  39.               </div> 
  40.             </div> 
  41.             <div class="pv-speed ml"
  42.               <p class="pv-spnum" onmouseover="vp.selectListShow()">1x</p> 
  43.               <ul class="selectList" onclick="vp.useSpnum()"
  44.                 <li>0.5x</li> 
  45.                 <li>1x</li> 
  46.                 <li>1.25x</li> 
  47.                 <li>1.5x</li> 
  48.                 <li>2x</li> 
  49.               </ul> 
  50.             </div> 
  51.             <div class="pv-screen ml" onclick="vp.fullScreen()"
  52.               <i class="iconfont icon-quanping"></i> 
  53.               <i class="iconfont icon-huanyuan hide"></i> 
  54.             </div> 
  55.           </div> 
  56.         </div> 
  57.       </div> 
  58.     </div> 
  59.     <script src="./js/vp.js"></script> 
  60.     <script> 
  61.       const vp = new VamVideo( 
  62.         document.querySelector(".video-box"), // 挂载父节点 
  63.         { // 视频属性 
  64.           poster:"./img/bg.png"
  65.           src:"https://mos-vod-drcn.dbankcdn.cn/P_VT/video_injection/A91343E9D/v3/9AB0A7921049102362779584128/MP4Mix_H.264_1920x1080_6000_HEAAC1_PVC_NoCut.mp4"
  66.           preload:"auto"
  67.           // loop:"loop"
  68.           // autoplay:"autoplay" 
  69.         }, 
  70.         { // 视频样式 
  71.           width:"1200px"
  72.           height:"600px" 
  73.         } 
  74.       ); 
  75.     </script> 
  76.   </body> 
  77. </html> 
 看到上面的代码,已经发现我们可以配置视频播放器了,那么这个vp.js到底是何方神圣呢?我们来看下。
  1. class VamVideo { 
  2.   constructor(vp, attrObj, styleObj) { 
  3.     this.timer = null
  4.     this.disX = 0; 
  5.     this.disL = 0; 
  6.     this.isfullScreen = false
  7.     for (const key in attrObj) { 
  8.       if (Object.hasOwnProperty.call(attrObj, key)) { 
  9.         this.$(".video-player").setAttribute(key, attrObj[key]); 
  10.       } 
  11.     } 
  12.     for (const key in styleObj) { 
  13.       if (Object.hasOwnProperty.call(styleObj, key)) { 
  14.         this.$(".video-box").style[`${key}`] = styleObj[key]; 
  15.         key === "width" 
  16.           ? (this.vbw = styleObj.width) 
  17.           : (this.vbw = vp.offsetWidth); 
  18.         key === "height" 
  19.           ? (this.vbh = styleObj.height) 
  20.           : (this.vbh = vp.offsetHeight); 
  21.       } 
  22.     } 
  23.   } 
  24.   $ = (el) => document.querySelector(el); 
  25.   showEl = (el) => { 
  26.     this.$(el).style.display = "block"
  27.   }; 
  28.   hideEl = (el) => { 
  29.     this.$(el).style.display = "none"
  30.   }; 
  31.   setVp = (w, h) => { 
  32.     const _w = String(w).indexOf("px") != -1 ? w : w + "px"
  33.     const _h = String(h).indexOf("px") != -1 ? h : h + "px"
  34.     this.$(".video-player").style.width = _w; 
  35.     this.$(".video-player").style.height = _h; 
  36.     this.$(".video-box").style.width = _w; 
  37.     this.$(".video-box").style.height = _h; 
  38.     this.$(".pv-bar").style.width = _w; 
  39.   }; 
  40.   nowTime = () => { 
  41.     this.$(".pv-currentTime").innerHTML = this.changeTime( 
  42.       this.$(".video-player").currentTime 
  43.     ); 
  44.     let scale = 
  45.       this.$(".video-player").currentTime / this.$(".video-player").duration; 
  46.     let w = this.$(".pv-bar").offsetWidth - this.$(".pv-dot").offsetWidth; 
  47.     this.$(".pv-dot").style.left = scale * w + "px"
  48.     this.$(".pv-played").style.width = scale * w + "px"
  49.   }; 
  50.   changeTime = (iNum) => { 
  51.     let iN = parseInt(iNum); 
  52.     const iH = this.toZero(Math.floor(iN / 3600)); 
  53.     const iM = this.toZero(Math.floor((iN % 3600) / 60)); 
  54.     const iS = this.toZero(Math.floor(iN % 60)); 
  55.     return iH + ":" + iM + ":" + iS
  56.   }; 
  57.   toZero = (num) => { 
  58.     if (num <= 9) { 
  59.       return "0" + num; 
  60.     } else { 
  61.       return "" + num; 
  62.     } 
  63.   }; 
  64.   // 底部控制栏(显示/隐藏) 
  65.   bottomTup = () => { 
  66.     this.$(".bottom-tool").style.bottom = "0px"
  67.   }; 
  68.   bottomTdow = () => { 
  69.     this.$(".bottom-tool").style.bottom = "-45px"
  70.   }; 
  71.   // 倍速播放栏(显示/隐藏) 
  72.   selectListShow = () => { 
  73.     this.showEl(".selectList"); 
  74.   }; 
  75.   selectListHide = () => { 
  76.     this.hideEl(".selectList"); 
  77.   }; 
  78.   // 播放/暂停 
  79.   usePlay = () => { 
  80.     if (this.$(".video-player").paused) { 
  81.       this.$(".video-player").play(); 
  82.       this.hideEl(".icon-bofang"); 
  83.       this.showEl(".icon-zanting"); 
  84.       this.nowTime(); 
  85.       this.timer = setInterval(this.nowTime, 1000); 
  86.     } else { 
  87.       this.$(".video-player").pause(); 
  88.       this.showEl(".icon-bofang"); 
  89.       this.hideEl(".icon-zanting"); 
  90.       clearInterval(this.timer); 
  91.     } 
  92.   }; 
  93.   // 总时长 
  94.   useOnplay = () => { 
  95.     this.$(".pv-duration").innerHTML = this.changeTime( 
  96.       this.$(".video-player").duration 
  97.     ); 
  98.   }; 
  99.   // 播放结束 
  100.   useEnd = () => { 
  101.     this.showEl(".icon-bofang"); 
  102.     this.hideEl(".icon-zanting"); 
  103.   }; 
  104.   // 静音 
  105.   useVolume = () => { 
  106.     if (this.$(".video-player").muted) { 
  107.       this.$(".video-player").volume = 1; 
  108.       this.hideEl(".icon-jingyin"); 
  109.       this.showEl(".icon-yinliang"); 
  110.       this.$(".video-player").muted = false
  111.     } else { 
  112.       this.$(".video-player").volume = 0; 
  113.       this.showEl(".icon-jingyin"); 
  114.       this.hideEl(".icon-yinliang"); 
  115.       this.$(".video-player").muted = true
  116.     } 
  117.   }; 
  118.   // 全屏 
  119.   fullScreen = () => { 
  120.     const w = document.documentElement.clientWidth || document.body.clientWidth; 
  121.     const h = 
  122.       document.documentElement.clientHeight || document.body.clientHeight; 
  123.     this.isfullScreen = !this.isfullScreen; 
  124.     if (this.isfullScreen) { 
  125.       this.setVp(w, h); 
  126.       this.hideEl(".icon-quanping"); 
  127.       this.showEl(".icon-huanyuan"); 
  128.     } else { 
  129.       console.log("w" + this.vbw, "h" + this.vbh); 
  130.       this.setVp(this.vbw, this.vbh); 
  131.       this.showEl(".icon-quanping"); 
  132.       this.hideEl(".icon-huanyuan"); 
  133.     } 
  134.   }; 
  135.   // 播放进度条 
  136.   useTime = (ev) => { 
  137.     let ev1 = ev || window.event; 
  138.     this.disX = ev1.clientX - this.$(".pv-dot").offsetLeft; 
  139.     document.onmousemove = (ev) => { 
  140.       let ev2 = ev || window.event; 
  141.       let L = ev2.clientX - this.disX; 
  142.       if (L < 0) { 
  143.         L = 0; 
  144.       } else if ( 
  145.         L > 
  146.         this.$(".pv-bar").offsetWidth - this.$(".pv-dot").offsetWidth 
  147.       ) { 
  148.         L = this.$(".pv-bar").offsetWidth - this.$(".pv-dot").offsetWidth; 
  149.       } 
  150.       this.$(".pv-dot").style.left = L + "px"
  151.       let scale = 
  152.         L / (this.$(".pv-bar").offsetWidth - this.$(".pv-dot").offsetWidth); 
  153.       this.$(".video-player").currentTime = 
  154.         scale * this.$(".video-player").duration; 
  155.       this.nowTime(); 
  156.     }; 
  157.     document.onmouseup = function () { 
  158.       document.onmousemove = null
  159.     }; 
  160.     return false
  161.   }; 
  162.   // 音量控制 
  163.   useListen = (ev) => { 
  164.     let ev1 = ev || window.event; 
  165.     this.disL = ev1.clientX - this.$(".pv-ol").offsetLeft; 
  166.     document.onmousemove = (ev) => { 
  167.       let ev2 = ev || window.event; 
  168.       let L = ev2.clientX - this.disL; 
  169.       if (L < 0) { 
  170.         L = 0; 
  171.       } else if ( 
  172.         L > 
  173.         this.$(".pv-yl").offsetWidth - this.$(".pv-ol").offsetWidth 
  174.       ) { 
  175.         L = this.$(".pv-yl").offsetWidth - this.$(".pv-ol").offsetWidth; 
  176.       } 
  177.       this.$(".pv-ol").style.left = L + "px"
  178.       let scale = 
  179.         L / (this.$(".pv-yl").offsetWidth - this.$(".pv-ol").offsetWidth); 
  180.       this.$(".pv-bg").style.width = this.$(".pv-ol").offsetLeft + "px"
  181.       if (this.$(".pv-ol").offsetLeft !== 0) { 
  182.         this.showEl(".icon-yinliang"); 
  183.         this.hideEl(".icon-jingyin"); 
  184.       } else { 
  185.         this.showEl(".icon-jingyin"); 
  186.         this.hideEl(".icon-yinliang"); 
  187.       } 
  188.       this.$(".video-player").volume = scale; 
  189.     }; 
  190.     document.onmouseup = function () { 
  191.       document.onmousemove = null
  192.     }; 
  193.     return false
  194.   }; 
  195.   // 播放速度 
  196.   useSpnum = (e) => { 
  197.     let ev = e || window.event; 
  198.     this.hideEl(".selectList"); 
  199.     this.$(".pv-spnum").innerText = ev.target.innerText; 
  200.     const value = ev.target.innerText.replace("x"""); 
  201.     this.$(".video-player").playbackRate = value; 
  202.   }; 

这样不仅可以自定义配置一个视频播放器,逻辑文件中的每一个方法函数还非常的简单明了,可以说是达到我们要求的目的了。但是我们可以更简洁。

三、模板字符串

1.strvp.js:把标签语句放在了模板字符串中。

  1. <!DOCTYPE html> 
  2. <html lang="en"
  3.   <head> 
  4.     <meta charset="UTF-8" /> 
  5.     <meta name="viewport" content="width=device-width, initial-scale=1.0" /> 
  6.     <title>VamVideo(模板字符版)</title> 
  7.     <link rel="stylesheet" href="./css/iconfont/iconfont.css" /> 
  8.     <link rel="stylesheet" href="./css/index.css" /> 
  9.   </head> 
  10.   <body> 
  11.     <!-- 挂载点 --> 
  12.     <div id="app"></div> 
  13.  
  14.     <script src="./js/strvp.js"></script> 
  15.     <script src="./js/vp.js"></script> 
  16.     <script> 
  17.       const node = document.querySelector("#app"); 
  18.       node.insertAdjacentHTML("beforeEnd", strHtml); 
  19.        
  20.       const vp = new VamVideo( 
  21.         document.querySelector(".video-box"), // 挂载父节点 
  22.         { // 视频属性 
  23.           poster:"./img/bg.png"
  24.           src:"https://mos-vod-drcn.dbankcdn.cn/P_VT/video_injection/A91343E9D/v3/9AB0A7921049102362779584128/MP4Mix_H.264_1920x1080_6000_HEAAC1_PVC_NoCut.mp4"
  25.           preload:"auto"
  26.           // loop:"loop"
  27.           // autoplay:"autoplay" 
  28.         }, 
  29.         { // 视频样式 
  30.           width:"1200px"
  31.           height:"600px" 
  32.         } 
  33.       ); 
  34.     </script> 
  35.   </body> 
  36. </html> 

可以看到上面的代码,我直接把标签语句转换为字符串直接挂载到父节点上,这样就更加简洁了。下面的代码就是一堆标签语句。

  1. const strHtml = ` 
  2. <div class="video-box" onmouseenter="vp.bottomTup()" onmouseleave="vp.bottomTdow()"
  3.       <video class="video-player" oncanplay="vp.useOnplay()" onended="vp.useEnd()"></video> 
  4.       <div class="bottom-tool"
  5.         <div class="pv-bar"
  6.           <div class="pv-played"></div> 
  7.           <div class="pv-dot" onmousedown="vp.useTime()"></div> 
  8.         </div> 
  9.         <div class="pv-controls" onmouseleave="vp.selectListHide()"
  10.           <div class="pc-con-l"
  11.             <div class="play-btn" onclick="vp.usePlay()"
  12.               <i class="iconfont icon-bofang"></i> 
  13.               <i class="iconfont icon-zanting hide"></i> 
  14.             </div> 
  15.             <div class="pv-time"
  16.               <span class="pv-currentTime">00:00:00</span> 
  17.               <span>/</span> 
  18.               <span class="pv-duration">00:00:00</span> 
  19.             </div> 
  20.           </div> 
  21.           <div class="pc-con-r"
  22.             <div class="pv-listen ml"
  23.               <div class="pv-yl"
  24.                 <p class="pv-ol" onmousedown="vp.useListen()"></p> 
  25.                 <p class="pv-bg"></p> 
  26.               </div> 
  27.               <div class="pv-iconyl" onclick="vp.useVolume()"
  28.                 <i class="iconfont icon-yinliang"></i> 
  29.                 <i class="iconfont icon-jingyin hide"></i> 
  30.               </div> 
  31.             </div> 
  32.             <div class="pv-speed ml"
  33.               <p class="pv-spnum" onmouseover="vp.selectListShow()">1x</p> 
  34.               <ul class="selectList" onclick="vp.useSpnum()"
  35.                 <li>0.5x</li> 
  36.                 <li>1x</li> 
  37.                 <li>1.25x</li> 
  38.                 <li>1.5x</li> 
  39.                 <li>2x</li> 
  40.               </ul> 
  41.             </div> 
  42.             <div class="pv-screen ml" onclick="vp.fullScreen()"
  43.               <i class="iconfont icon-quanping"></i> 
  44.               <i class="iconfont icon-huanyuan hide"></i> 
  45.             </div> 
  46.           </div> 
  47.         </div> 
  48.       </div> 
  49.     </div> 
  50. `; 

我们再进一步,使用Vue.js、React.js分别实现一波。

四、Vue.js

1.vue@2.6.12:引入Vue.js,这里我们使用@2.6.12。

  1. <!DOCTYPE html> 
  2. <html lang="en"
  3.   <head> 
  4.     <meta charset="UTF-8" /> 
  5.     <meta name="viewport" content="width=device-width, initial-scale=1.0" /> 
  6.     <title>VamVideo(Vue.js版)</title> 
  7.     <link rel="stylesheet" href="./css/iconfont/iconfont.css" /> 
  8.     <link rel="stylesheet" href="./css/index.css" /> 
  9.   </head> 
  10.   <body> 
  11.     <div id="app"
  12.       <vam-video></vam-video> 
  13.     </div> 
  14.     <script src="https://cdn.jsdelivr.net/npm/vue@2.6.12"></script> 
  15.     <script src="./js/vp.js"></script> 
  16.     <script> 
  17.       Vue.component("vam-video", { 
  18.         template: ` 
  19.     <div class="video-box" @mouseenter="vp.bottomTup()" @mouseleave="vp.bottomTdow()"
  20.       <video class="video-player" @canplay="vp.useOnplay()" @ended="vp.useEnd()"></video> 
  21.       <div class="bottom-tool"
  22.         <div class="pv-bar"
  23.           <div class="pv-played"></div> 
  24.           <div class="pv-dot" @mousedown="vp.useTime()"></div> 
  25.         </div> 
  26.         <div class="pv-controls" @mouseleave="vp.selectListHide()"
  27.           <div class="pc-con-l"
  28.             <div class="play-btn" @click="vp.usePlay()"
  29.               <i class="iconfont icon-bofang"></i> 
  30.               <i class="iconfont icon-zanting hide"></i> 
  31.             </div> 
  32.             <div class="pv-time"
  33.               <span class="pv-currentTime">00:00:00</span> 
  34.               <span>/</span> 
  35.               <span class="pv-duration">00:00:00</span> 
  36.             </div> 
  37.           </div> 
  38.           <div class="pc-con-r"
  39.             <div class="pv-listen ml"
  40.               <div class="pv-yl"
  41.                 <p class="pv-ol" @mousedown="vp.useListen()"></p> 
  42.                 <p class="pv-bg"></p> 
  43.               </div> 
  44.               <div class="pv-iconyl" @click="vp.useVolume()"
  45.                 <i class="iconfont icon-yinliang"></i> 
  46.                 <i class="iconfont icon-jingyin hide"></i> 
  47.               </div> 
  48.             </div> 
  49.             <div class="pv-speed ml"
  50.               <p class="pv-spnum" @mouseover="vp.selectListShow()">1x</p> 
  51.               <ul class="selectList" @click="vp.useSpnum()"
  52.                 <li>0.5x</li> 
  53.                 <li>1x</li> 
  54.                 <li>1.25x</li> 
  55.                 <li>1.5x</li> 
  56.                 <li>2x</li> 
  57.               </ul> 
  58.             </div> 
  59.             <div class="pv-screen ml" @click="vp.fullScreen()"
  60.               <i class="iconfont icon-quanping"></i> 
  61.               <i class="iconfont icon-huanyuan hide"></i> 
  62.             </div> 
  63.           </div> 
  64.         </div> 
  65.       </div> 
  66.     </div> 
  67.           `, 
  68.       }); 
  69.       const vm = new Vue({ 
  70.         el: "#app"
  71.       }); 
  72.        
  73.       const vp = new VamVideo( 
  74.         document.querySelector(".video-box"), // 挂载父节点 
  75.         { 
  76.           // 视频属性 
  77.           poster: "./img/bg.png"
  78.           src: 
  79.             "https://mos-vod-drcn.dbankcdn.cn/P_VT/video_injection/A91343E9D/v3/9AB0A7921049102362779584128/MP4Mix_H.264_1920x1080_6000_HEAAC1_PVC_NoCut.mp4"
  80.           preload: "auto"
  81.           // loop:"loop"
  82.           // autoplay:"autoplay" 
  83.         }, 
  84.         { 
  85.           // 视频样式 
  86.           width: "1200px"
  87.           height: "600px"
  88.         } 
  89.       ); 
  90.     </script> 
  91.   </body> 
  92. </html> 

 从上面的代码中可以看到,可以直接在全局实例化一个对象,可以根据自己的需要进行配置。

五、React.js

1.react.development.js - React 的核心库。

2.react-dom.development - 提供与 DOM 相关的功能。

3.babel.min.js - Babel 可以将 ES6 代码转为 ES5 代码,这样我们就能在目前不支持 ES6 浏览器上执行 React 代码。Babel 内嵌了对 JSX 的支持。通过将 Babel 和 babel-sublime 包(package)一同使用可以让源码的语法渲染上升到一个全新的水平。

  1. <!DOCTYPE html> 
  2. <html lang="en"
  3.   <head> 
  4.     <meta charset="UTF-8" /> 
  5.     <meta name="viewport" content="width=device-width, initial-scale=1.0" /> 
  6.     <title>VamVideo(React.js版)</title> 
  7.     <link rel="stylesheet" href="./css/iconfont/iconfont.css" /> 
  8.     <link rel="stylesheet" href="./css/index.css" /> 
  9.     <script src="https://cdn.staticfile.org/react/16.4.0/umd/react.development.js"></script> 
  10.     <script src="https://cdn.staticfile.org/react-dom/16.4.0/umd/react-dom.development.js"></script> 
  11.     <script src="https://cdn.staticfile.org/babel-standalone/6.26.0/babel.min.js"></script> 
  12.   </head> 
  13.   <body> 
  14.     <div id="app"></div> 
  15.     <script src="./js/vp.js"></script> 
  16.     <script type="text/babel"
  17.       class VamVideoPlayer extends React.Component { 
  18.         constructor(props) { 
  19.           super(props); 
  20.           this.vper = null
  21.         } 
  22.         vp(v) { 
  23.           this.vper = v; 
  24.         } 
  25.         componentDidMount() { 
  26.           let vps = new VamVideo( 
  27.             document.querySelector(".video-box"), // 挂载父节点 
  28.             { 
  29.               // 视频属性 
  30.               poster: "./img/bg.png"
  31.               src: 
  32.                 "https://mos-vod-drcn.dbankcdn.cn/P_VT/video_injection/A91343E9D/v3/9AB0A7921049102362779584128/MP4Mix_H.264_1920x1080_6000_HEAAC1_PVC_NoCut.mp4"
  33.               preload: "auto"
  34.               // loop:"loop"
  35.               // autoplay:"autoplay" 
  36.             }, 
  37.             { 
  38.               // 视频样式 
  39.               width: "1200px"
  40.               height: "600px"
  41.             } 
  42.           ); 
  43.           this.vp(vps); 
  44.         } 
  45.         render() { 
  46.           return ( 
  47.             <div 
  48.               className="video-box" 
  49.               onMouseEnter={() => this.vper.bottomTup()} 
  50.               onMouseLeave={() => this.vper.bottomTdow()} 
  51.             > 
  52.               <video 
  53.                 className="video-player" 
  54.                 onCanPlay={() => this.vper.useOnplay()} 
  55.                 onEnded={() => this.vper.useEnd()} 
  56.               ></video> 
  57.               <div className="bottom-tool"
  58.                 <div className="pv-bar"
  59.                   <div className="pv-played"></div> 
  60.                   <div 
  61.                     className="pv-dot" 
  62.                     onMouseDown={(e) => this.vper.useTime(e)} 
  63.                   ></div> 
  64.                 </div> 
  65.                 <div 
  66.                   className="pv-controls" 
  67.                   onMouseLeave={() => this.vper.selectListHide()} 
  68.                 > 
  69.                   <div className="pc-con-l"
  70.                     <div 
  71.                       className="play-btn" 
  72.                       onClick={() => this.vper.usePlay()} 
  73.                     > 
  74.                       <i className="iconfont icon-bofang"></i> 
  75.                       <i className="iconfont icon-zanting hide"></i> 
  76.                     </div> 
  77.                     <div className="pv-time"
  78.                       <span className="pv-currentTime">00:00:00</span> 
  79.                       <span>/</span> 
  80.                       <span className="pv-duration">00:00:00</span> 
  81.                     </div> 
  82.                   </div> 
  83.                   <div className="pc-con-r"
  84.                     <div className="pv-listen ml"
  85.                       <div className="pv-yl"
  86.                         <p 
  87.                           className="pv-ol" 
  88.                           onMouseDown={(e) => this.vper.useListen(e)} 
  89.                         ></p> 
  90.                         <p className="pv-bg"></p> 
  91.                       </div> 
  92.                       <div 
  93.                         className="pv-iconyl" 
  94.                         onClick={() => this.vper.useVolume()} 
  95.                       > 
  96.                         <i className="iconfont icon-yinliang"></i> 
  97.                         <i className="iconfont icon-jingyin hide"></i> 
  98.                       </div> 
  99.                     </div> 
  100.                     <div className="pv-speed ml"
  101.                       <p 
  102.                         className="pv-spnum" 
  103.                         onMouseOver={(e) => this.vper.selectListShow(e)} 
  104.                       > 
  105.                         1x 
  106.                       </p> 
  107.                       <ul 
  108.                         className="selectList" 
  109.                         onClick={(e) => this.vper.useSpnum(e)} 
  110.                       > 
  111.                         <li>0.5x</li> 
  112.                         <li>1x</li> 
  113.                         <li>1.25x</li> 
  114.                         <li>1.5x</li> 
  115.                         <li>2x</li> 
  116.                       </ul> 
  117.                     </div> 
  118.                     <div 
  119.                       className="pv-screen ml" 
  120.                       onClick={() => this.vper.fullScreen()} 
  121.                     > 
  122.                       <i className="iconfont icon-quanping"></i> 
  123.                       <i className="iconfont icon-huanyuan hide"></i> 
  124.                     </div> 
  125.                   </div> 
  126.                 </div> 
  127.               </div> 
  128.             </div> 
  129.           ); 
  130.         } 
  131.       } 
  132.  
  133.       ReactDOM.render(<VamVideoPlayer />, document.getElementById("app")); 
  134.     </script> 
  135.   </body> 
  136. </html> 
 上面React版本可能有点老,但是逻辑不会变。大家可以使用最新版本或者脚手架来开发一个视频播放器组件,这样一切都是自己说了算。

结语

到这里,我们使用五种方法来实践一个自定义配置视频播放器。梦想就这么简单地实现了!你可以查看完整源码到我的github上,地址在这https://github.com/maomincoding/vamPlayer。

项目中主要难点在于拖拽那块,大家可以先自己尝试着去理解,我将会在下一篇主要讲述本项目所遇到的一些问题以及解决方法。

 

责任编辑:姜华 来源: 前端历劫之路
相关推荐

2021-10-18 14:57:25

鸿蒙HarmonyOS应用

2020-12-29 05:26:27

视频播放器Vuevideo

2011-08-30 09:48:07

Ubuntu

2023-10-30 13:14:57

Moosync开源播放器

2013-07-03 11:22:31

经验分享UI设计产品经理

2011-12-18 18:27:32

Flash

2021-08-01 16:13:52

Clapper视频播放器Linux

2012-11-19 11:07:42

IBMdw

2021-01-06 05:25:56

项目Springboot应用

2021-10-19 14:27:07

鸿蒙HarmonyOS应用

2013-04-08 10:54:51

Javascript

2022-06-06 09:28:36

ReactHook

2013-05-27 09:47:33

Java开发Java跨平台

2022-08-16 17:37:06

视频播放器鸿蒙

2023-03-28 09:38:34

开发应用鸿蒙

2020-06-02 16:38:24

华为

2009-04-13 08:46:07

盖茨慈善梦想

2021-06-25 10:38:05

JavaScript编译器前端开发

2022-02-24 13:08:12

前端开发视频

2012-06-04 13:44:08

点赞
收藏

51CTO技术栈公众号