我一直在寻找能够在横向模式下始终只显示一个特定jquery移动页面div的方法。
任何可能有帮助的例子或想法,我都会非常感激。
function forceLandscape() {
console.log('Starting: forceLandscape ');
console.log('----------------------------------------------------');
// var orientation = window.orientation;
// var new_orientation = 0;
// switch (orientation) {
// case 90:
// break;
// case -90:
// new_orientation = 180
// $('body').css({ ".ui-mobile,.ui-mobile .ui-page{min-height:300px} -webkit-transform": "rotate(" + new_orientation + "deg);" });
// break;
// case 180:
// new_orientation = 270;
// $('body').css({ ".ui-mobile,.ui-mobile .ui-page{min-height:300px} -webkit-transform": "rotate(" + new_orientation + "deg);" });
// break;
// case 0:
// new_orientation = 90;
// $('body').css({ ".ui-mobile,.ui-mobile .ui-page{min-height:300px} -webkit-transform": "rotate(" + new_orientation + "deg);" });
// break;
// default:
// $('body').css({ ".ui-mobile,.ui-mobile .ui-page{min-height:300px} -webkit-transform": "rotate(" + new_orientation + "deg);" });
// }
console.log('----------------------------------------------------');
console.log('Completed: forceLandscape ');
}
答案 0 :(得分:1)
不推荐这样做,但你可以这样做:
$('body').css({
"-webkit-transform": "rotate(90deg)"
put other browsers here
});
或仅在css
#page {
transform:rotate(90deg);
-ms-transform:rotate(90deg); /* IE 9 */
-moz-transform:rotate(90deg); /* Firefox */
-webkit-transform:rotate(90deg); /* Safari and Chrome */
-o-transform:rotate(90deg); /* Opera */
}