app禁止横屏设置
更新时间: 2025-09-19 10:23:28
全局禁止横屏,也就是强制竖屏,可以在manifest.json中设置
{
"app-plus": {
"screenOrientation": ["portrait-primary"] // 仅允许正向竖屏
},
"mp-weixin": {
"pageOrientation": "portrait" // 微信小程序强制竖屏
},
"h5": {
"screenOrientation": "portrait" // H5平台声明偏好(部分浏览器支持)
}
}
1
2
3
4
5
6
7
8
9
10
11
2
3
4
5
6
7
8
9
10
11