<video id="myVideo" :src="videoList[0]" x5-playsinline="" playsinline="" class="myVideo" :custom-cache="false" :muted='muted'
webkit-playsinline="" :poster="poster" preload="auto" :autoplay='true'>
</video>
1.如果ios第一次点击放大预览黑屏的情况
:autoplay='true' 将自动播放打开**:muted='muted'并且静音即可**
ios想要自动播放生效就必须静音
2.如果uniapp内置浏览器播放黑屏(会有这样的情况无解)
直接运行到外部浏览器中查看,发到线上H5一样可以播放 但是没有封面
3.H5页面video没有封面黑屏情况
:poster="poster" 使用poster封面属性 赋值一个路径即可(最好是传视频的时候让后端把视频路径和封面路径一起返回)
poster封面属性即可
4.video播放事件
fdBtn() {
this.muted=false
let videoContext = wx.createVideoContext('myVideo'); //获取video的dom
videoContext.requestFullScreen({
direction: 90
});
this.$nextTick(()=>{
videoContext.play() //视频播放
})
},