Aliplayer播放器手機(jī)端不能橫屏全屏問題解決方法
Aliplayer播放器手機(jī)端不能橫屏(有些瀏覽器可以有效不行)
使用Aliplayer播放器播放視頻后,點擊全屏,在手機(jī)方向鎖定的情況下,播放器只能豎屏,不能做到全屏橫屏播放,解決方法就是要支持H5的手機(jī)瀏覽器,然后加入如下代碼
var isMobile = !!navigator.userAgent.match(/AppleWebKit.*Mobile.*/); if (isMobile) {//全屏事件 player.on('requestFullScreen',function() { screen.orientation.lock("landscape");});//退出全屏事件 player.on('cancelFullScreen',function() { screen.orientation.unlock(); }); }