全屏显示video视频后,没有进度条和controlbar
fullScreen(){
if(this.player.requestFullscreen){
this.player.requestFullscreen()
}else if(this.player.mozRequestFullScreen) {
this.player.mozRequestFullScreen();
} else if (this.player.webkitEnterFullScreen) {
this.player.webkitEnterFullScreen();
}
html:
<video ref="video" @click="playPause" class="video" :src="info.materialsUrl" x5-video-player-type="h5" x5-playsinline="" playsinline="" webkit-playsinline=''></video>
如何显示进度条以及控制单元
|
|