/* 在頁面加載的時候調(diào)用 */
orient();
/* 在用戶變化屏幕顯示方向的時候調(diào)用*/
$(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;
? ? }
}