vue 项目中使用video实现视频播放效果暂停播放

  <video :src="video_url"  controls="controls" style="width:100%;height:100%;" ref="vueMiniPlayer"></video>

再给

this.video_url='http://47.105.206.28/videos/wangkun.mp4'

判断是否暂停状态返回true false

this.$refs.vueMiniPlayer.paused  //true  false
this.$refs.vueMiniPlayer.pause();//暂停
  this.$refs.vueMiniPlayer.play();//播放

效果图
在这里插入图片描述

猜你喜欢

转载自blog.csdn.net/wzwzwz555/article/details/108050615