我正在使用Phonegap for Android和iphone开发应用程序。当我从一个页面导航到另一个页面时,我需要更改屏幕方向。任何人都可以告诉你如何通过java脚本或jquery来完成它?
谢谢
答案 0 :(得分:5)
你可以试试这个:
$(window).resize(function() {
var height = $(window).height();
var width = $(window).width();
if (width > height) {
// Landscape
$("#mode").text("LANDSCAPE");
} else {
// Portrait
$("#mode").text("PORTRAIT");
}
});
另一个ID window.orientation
返回0
,90
或-90
,其中:
0
代表:肖像模式
90
代表:横向模式,屏幕向左转
-90
代表:横向模式,屏幕右转
window.onorientationchange = function()
{
var orientation = window.orientation;
switch(orientation) {
case 0:
//Top side up.
break;
case -90:
//Left side up (turned 90 degrees to the right)
break;
case 90:
//Right side up (turned 90 degrees to the left)
break;
}
}
您还可以看到
Detect rotation of Android phone in the browser with JavaScript获取信息。