/* 在页面加载的时候调用 */
orient();
/* 在用户变化屏幕显示方向的时候调用*/
$(window).bind( 'orientationchange', function(e){
orient();
});
function orient() {
if (window.orientation == 0 || window.orientation == 180) {
orientation = 'portrait';
setTimeout(function () {
var ph = $(".wrap").height();
$(".wrap").height(ph);
$(".model_result").height(ph);
},500)
return false;
}
else if (window.orientation == 90 || window.orientation == -90) {
orientation = 'landscape';
setTimeout(function () {
var lh = $(".wrap").height();
$(".wrap").height(lh);
$(".model_result").height(lh);
},500)
return false;
}
}
网友评论