bytedance / xgplayer

A HTML5 video player with a parser that saves traffic
https://h5player.bytedance.com/
MIT License
8.3k stars 866 forks source link

H5上不能默认全屏播放吗?设置了不生效 #1561

Closed zhengcongqi closed 1 month ago

zhengcongqi commented 2 months ago

fullScreen: true设置了不生效

bree323 commented 2 months ago

是默认全屏还是有全屏按钮,全屏按钮不生效吖?

zhengcongqi commented 2 months ago

可以全屏了,怎么默认横屏播放呀

Road-sun commented 2 months ago

可以全屏了,怎么默认横屏播放呀 rotateFullscreen image

gemxx commented 2 months ago

@zhengcongqi 全屏插件支持 ScreenOrientation 这个方式锁定屏幕方向。可以配置增加如下参数:

{
  fullscreen: {
    useScreenOrientation: true,
    lockOrientationType: 'landscape'
  }
}
gemxx commented 2 months ago

见官网中fullscreen插件对于 useScreenOrientation 的说明:https://h5player.bytedance.com/plugins/internalplugins/fullscreen.html#usescreenorientation

zhengcongqi commented 1 month ago

修复