翼度科技»论坛 编程开发 JavaScript 查看内容

Vue 监听视频播放时长的实例代码

9

主题

9

帖子

27

积分

新手上路

Rank: 1

积分
27
1、源码
  1. <template>
  2.   <el-dialog class="videoBox" :title="title" :visible.sync="visible" width="40%" :before-close="handleClose" :close-on-click-modal="false" :close-on-press-escape="false">
  3.     <video id="video" controls preload autoplay="autoplay" style="width: 100%" @canplay="getVideoDur">
  4.       <source :src="videoUrl" type="video/mp4">
  5.     </video>
  6.   </el-dialog>
  7. </template>
  8. <script>
  9. export default {
  10.   name: 'VideoPlayBack',
  11.   data() {
  12.     return {
  13.       // 标题
  14.       title: null,
  15.       // 是否显示弹框
  16.       visible: false,
  17.       // 视频地址
  18.       videoUrl: null
  19.     }
  20.   },
  21.   methods: {
  22.     /**
  23.      * 初始化视频
  24.      */
  25.     initVideo() {
  26.       this.$nextTick(() => {
  27.         let myVideo = document.getElementById('video')
  28.         myVideo.pause()
  29.         myVideo.load()
  30.       });
  31.     },
  32.     /**
  33.      * 监听视频
  34.      */
  35.     getVideoDur() {
  36.       //监听播放时间
  37.       var video = document.getElementById("video");
  38.       // //使用事件监听方式捕捉事件
  39.       // video.addEventListener("timeupdate", function () {
  40.       //     var timeDisplay = Math.floor(video.currentTime);
  41.       //     var duration = Math.floor(video.duration);
  42.       //     console.log("总时长", duration);
  43.       //     console.log("当前播放的时长", timeDisplay);
  44.       //   }, false);
  45.       // 监听视频播放
  46.       // video.addEventListener("play", function () {
  47.       //   var duration = Math.floor(video.duration);
  48.       //   console.log("总时长", duration);
  49.       //   var timeDisplay = Math.floor(video.currentTime);
  50.       //   console.log("视频开始时长", timeDisplay);
  51.       // })
  52.       // 监听视频暂停
  53.       video.addEventListener("pause", function () {
  54.         var duration = Math.floor(video.duration);
  55.         console.log("总时长", duration);
  56.         var timeDisplay = Math.floor(video.currentTime);
  57.         console.log("视频结束时长", timeDisplay);
  58.       })
  59.     },
  60.     /**
  61.      * 关闭弹框
  62.      */
  63.     handleClose() {
  64.       this.videoUrl = null
  65.       this.visible = false
  66.     },
  67.   }
  68. }
  69. </script>
  70. <style>
  71. .videoBox .el-dialog__header {
  72.   background-color: #000000;
  73. }
  74. .videoBox .el-dialog__header .el-dialog__title {
  75.   color: #fff;
  76. }
  77. .videoBox .el-dialog__body {
  78.   padding: 0 !important;
  79.   background-color: #000000;
  80. }
  81. </style>
复制代码
2、监听视频实时时长
  1. video.addEventListener("timeupdate", function () {
  2.   var timeDisplay = Math.floor(video.currentTime);
  3.   var duration = Math.floor(video.duration);
  4.   console.log("总时长", duration);
  5.   console.log("当前播放的时长", timeDisplay);
  6. }, false);
复制代码
3、监听视频播放时长
  1. video.addEventListener("play", function () {
  2.   var duration = Math.floor(video.duration);
  3.   console.log("总时长", duration);
  4.   var timeDisplay = Math.floor(video.currentTime);
  5.   console.log("视频开始时长", timeDisplay);
  6. })
复制代码
4、监听视频暂停时长
  1. video.addEventListener("pause", function () {
  2.   var duration = Math.floor(video.duration);
  3.   console.log("总时长", duration);
  4.   var timeDisplay = Math.floor(video.currentTime);
  5.   console.log("视频结束时长", timeDisplay);
  6. })
复制代码
到此这篇关于Vue 监听视频播放时长的实例代码的文章就介绍到这了,更多相关vue播放时长内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

来源:https://www.jb51.net/javascript/328939rgn.htm
免责声明:由于采集信息均来自互联网,如果侵犯了您的权益,请联系我们【E-Mail:cb@itdo.tech】 我们会及时删除侵权内容,谢谢合作!

举报 回复 使用道具