將下面的代碼注入到要跳轉(zhuǎn)的H5網(wǎng)頁(yè)
if(plus.os.name =='Android'){
? ? ?console.log('Android');
? ? varself = plus.webview.currentWebview();?
? ? self.setStyle({videoFullscreen:'landscape'//橫屏 });
}else{
????????console.log('IOS');
????????varvideoElem =document.querySelector('video');//video元素 // video元素開(kāi)始全屏
????????// video元素開(kāi)始全屏?
?????????videoElem.addEventListener('webkitbeginfullscreen',function(){?
?????????????????plus.screen.lockOrientation('landscape');
?????????});
????????????// video元素全屏結(jié)束
?????????????videoElem.addEventListener('webkitendfullscreen',function(){?
?????????????????plus.screen.lockOrientation('portrait');?
?????????????});
?}
原網(wǎng)址在:https://ask.dcloud.net.cn/question/46848