如何在phoneGap中将当前屏幕转换为横向模式

时间:2015-05-06 05:40:05

标签: javascript jquery cordova jquery-mobile landscape

我们正在开发手机间隙应用程序。我们有4个页面,如one.html,two.html,three.html,four.html。在这一个(two.html)的HTML文件需要自动横向模式

请指导我们。我们是新手。

2 个答案:

答案 0 :(得分:1)

首先添加此脚本

<script type="text/javascript" src="cordova.js"></script>

然后在另一个脚本标记

<script>
    document.addEventListener("deviceready", onDeviceReady, false);
    function onDeviceReady() {
        var so = cordova.plugins.screenorientation;
        so.setOrientation(so.Orientation.LANDSCAPE);
    }
</script>

答案 1 :(得分:0)

您可以使用适用于Android的屏幕方向PhoneGap插件

以下是链接。

https://github.com/their/pg-plugin-screen-orientation