2019-07-18
2019-07-18 本文已影响0人
Coo啊
iOS下video 播放自动全屏问题
安卓设置属性:
x5-playsinline="true"
实测,不可加以下属性设置,否则还是会跳出黑底全屏播放
x5-video-player-type='h5' x5-video-player-fullscreen='true'
<video
ref={(ref) => videoPlayer = ref}
preload="auto"
webkit-playsinline="true"
x-webkit-airplay="true"
// playsinline// 注意这个请勿使用这个
playsInline // 这个才是正解
x5-playsinline
poster=""
src="xxxxx"
id="videos"
>
</video>