我正在构建混合移动应用程序。我需要仅针对特定屏幕将方向限制为纵向模式。整个页面都是一个单独的HTML。是否可以设置特定于div的纵向或横向。我想知道是否有可能处理这种情况。
答案 0 :(得分:0)
您可以使用cordova-plugin-screen-orientation
以编程方式更改(或锁定/解锁)应用方向:
// set to either landscape
screen.lockOrientation('landscape');
// allow user rotate
screen.unlockOrientation();
// access current orientation
console.log('Orientation is ' + screen.orientation);