当前位置 : 主页 > 手机开发 > cordova >

Cordova / Ionic – 为手机设置仅限肖像模式,并允许在平板电脑中定位

来源:互联网 收集:自由互联 发布时间:2021-06-10
我们如何将手机设置为仅限肖像并允许平板电脑在纵向和横向之间切换? 我正在使用Ionic / Cordova. 目前我已配置使用以下属性在config.xml中将应用程序设置为纵向模式 preference name="orien
我们如何将手机设置为仅限肖像并允许平板电脑在纵向和横向之间切换?

我正在使用Ionic / Cordova.

目前我已配置使用以下属性在config.xml中将应用程序设置为纵向模式

<preference name="orientation" value="portrait" />
您可以将 isTablet plugin与 screen orientation plugin结合使用,例如:

.run(function($ionicPlatform) {
  $ionicPlatform.ready(function() {
    if(window.isTablet){
        screen.unlockOrientation();
    }else{
        screen.lockOrientation('portrait');
    } 
  });
})
网友评论