当前位置: 首页 > Web前端 > HTML5

解决ios端视频自动全屏播放问题

时间:2023-04-05 00:33:06 HTML5

html5中使用video标签播放视频时,视频会自动全屏播放解决方法:ios端vi??deo标签必须添加webkit-playsinline,playsinline属性和android端的一些视频也会有自动全屏的问题,直接在html中添加webkit-playsinline属性并设置使用js动态添加//获取页面中所有视频标签constvideos=document.querySelectorAll('video')videos.forEach(item=>{item.removeAttribute('width')item.removeAttribute('height')//解决视频在ios默认全屏播放问题item.setAttribute('webkit-playsinline','')item.setAttribute('playsinline','')//解决部分安卓终端视频播放默认全屏问题item.setAttribute('x5-video-player-type','h5-page')//设置video标签的css样式item.style.width='100%'item.style.borderColor='#878484'item.style.borderWidth='1px'项目。style.borderStyle='solid'//视频设置自动播放item.autoplay='true'})