赞
踩
https://uniapp.dcloud.io/collocation/pages?id=globalstyle
"globalStyle": {
"pageOrientation": "auto"
}
在manifest.json中添加配置:
"orientation" : [
// 竖屏正方向
"portrait-primary",
// 竖屏反方向
"portrait-secondary",
// 横屏正方向
"landscape-primary",
// 横屏反方向
"landscape-secondary",
//自然方向
"default"
]
onLoad(){
// #ifdef APP-PLUS
plus.screen.lockOrientation('default');
// #endif
},
onUnload(){
// #ifdef APP-PLUS
plus.screen.lockOrientation('portrait-primary');
// #endif
}
onLoad(){
// #ifdef APP-PLUS
plus.screen.lockOrientation('portrait-primary');
// #endif
},
onUnload(){
// #ifdef APP-PLUS
plus.screen.lockOrientation('portrait-primary');
// #endif
}
mounted() {
// plus.screen.lockOrientation( 'landscape-secondary');
plus.screen.lockOrientation( 'landscape-primary');
}
Screen.lockOrientation()用法:
https://developer.mozilla.org/zh-CN/docs/Web/API/Screen/lockOrientation
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。