腾讯X5内核video标签自动全屏问题处理

设置video标签的同层播放

ios 比较简单

videoElement.setAttribute("webkit-playsinline", true);
videoElement.setAttribute("playsinline", true);
 

通过video属性“x5-video-player-type”声明启用同层H5播放器

同层页面内播放是标准的视频播放形态,在video标签中添加x5-video-player-type:h5-page属性来控制网页内部同层播放,可以在视频上方显示html元素,可以阻止安卓设备自动全屏以及显示播放进度条

ios安卓 都设置
videoElement.setAttribute("x5-video-player-type", "h5-page");
 
 
 
 
原文地址:https://www.cnblogs.com/joyce123/p/13517945.html