解决移动端video播放器总在最顶层的问题

在网页设计在移动端设计的时候有些box里面都是需要放置video的时候,video的时候的层级总是最高的,这个时候就是需要在video的基础上修改属性就可以了,具体的属性如下,大家可以参考参考:

<video src="https://hy.v.netease.com/2018/1030/5c9caed3eea6c6e079673d031fca3350qt.mp4" controls="controls" x5-playsinline="" playsinline="true" webkit-playsinline="true" x-webkit-airplay="true" x5-video-player-type="h5" x5-video-player-fullscreen="" x5-video-orientation="portraint"></video>

各个属性的参考如下: 

controls="controls" 

x5-playsinline="" 

playsinline="true" 

webkit-playsinline="true"

x-webkit-airplay="true" 

x5-video-player-type="h5" 

x5-video-player-fullscreen="" 

x5-video-orientation="portraint"