luban-mall/pagesB/video/playVideo.vue

87 lines
2.5 KiB
Vue

<template>
<view style="width:100%;overflow-x:hidden;">
<view class="back-img" @tap="backEv" :style="{top:newTop+'px'}">
<image src="/static/public/icon-back.png" mode="widthFix"></image>
</view>
<video id="myVideo" style="width: 100%;" :style="{height:newHeight+'px'}" autoplay="true"
:src="videoSrc" :enable-play-gesture="dans" :poster="posterSrc"
:controls="isControls" :show-center-play-btn="isCenterImg" :show-play-btn="isBottomImg" :show-fullscreen-btn="isFull"
@play="comePlay" @pause="comePause"></video>
<!-- -->
<image v-if="isPlayImg" @tap="playEv" src="/static/public/icon-play.png" style="position: fixed;top: 50%;left: 50%;
width: 126rpx;height: 126rpx;transform: translate(-50%, -50%);" mode="aspectFill"></image>
</view>
</template>
<script>
export default {
data(){
return {
newTop:uni.getSystemInfoSync().statusBarHeight + 8,
newHeight:uni.getSystemInfoSync().windowHeight,
videoSrc:'',
isPlayImg:false,
autoplay:true,
videoContext:'',
title:'',//视频的标题,全屏时在顶部展示
posterSrc:'',//视频封面的图片网络资源地址,如果 controls 属性值为 false 则设置 poster 无效
isControls: false,//是否显示默认播放控件(播放/暂停按钮、播放进度、时间)
dans:true,//是否开启播放手势,即双击切换播放/暂停
isCenterImg:false,//是否显示视频中间的播放按钮
isBottomImg:true,//是否显示视频底部控制栏的播放按钮
isFull:true//是否显示全屏按钮
}
},
computed:{
statusHeight() {
return this.$store.state.statusHeight
}
},
onReady: function (res) {
this.videoContext = uni.createVideoContext('myVideo', this)
},
onLoad(options) {
// 禁用小程序分享
this.$toolAll.tools.disableShareEv();
this.videoSrc = options.src
this.posterSrc = options.posterSrc
},
methods:{
backEv(){
uni.navigateBack({
delta:1
})
},
playEv(){
this.isPlayImg = false;
this.autoplay = false;
this.videoContext.play();
},
comePlay(){//当开始/继续播放时触发play事件
this.isControls = true;
},
comePause(){
this.isPlayImg = true;
this.isControls = false;
}
}
}
</script>
<style scoped>
.back-img{
display: flex;
justify-content: flex-start;
align-items: center;
width: 50px;
height: 50px;
position: fixed;
left: 30rpx;
z-index: 10;
}
.back-img>image{
width: 19rpx;
height: 35rpx;
}
</style>