人生若只如初见 - Dplayer https://blog.ilingku.com/tag/Dplayer/ zh-CN Sun, 12 Apr 2026 09:37:36 +0800 Sun, 12 Apr 2026 09:37:36 +0800 Dplayer播放器手机端不能横屏全部问题解决方法 https://blog.ilingku.com/archives/28/ https://blog.ilingku.com/archives/28/ Sun, 12 Apr 2026 09:37:36 +0800 kevin dplayer播放器手机端不能横屏(有些浏览器可以有效不行)

使用dplayer播放器播放视频后,点击全屏,在手机方向锁定的情况下,播放器只能竖屏,不能做到全屏横屏播放,解决方法就是要支持H5的手机浏览器,然后加入如下代码

//手机全屏自动横屏
var isMobile = !!navigator.userAgent.match(/AppleWebKit.*Mobile.*/);
if (isMobile) {
//全屏事件
dp.on('fullscreen',function() {
screen.orientation.lock("landscape");
});
//退出全屏事件
dp.on('fullscreen_cancel',function() {
screen.orientation.unlock();
});
}
]]>
0 https://blog.ilingku.com/archives/28/#comments https://blog.ilingku.com/feed/tag/Dplayer/archives/28/