1. 程式人生 > >js處理移動端有虛擬按鍵影響頁面佈局的處理方法

js處理移動端有虛擬按鍵影響頁面佈局的處理方法

//針對移動端有虛擬按鍵導致高度短影響整個頁面的佈局給予滾動條處理

function set_screen(wrap){

var s_height = document.body.clientHeight; 
var s_width = document.body.clientWidth;
var proportion = s_height/s_width;
if(proportion<1.55){
var max_warp = document.querySelector(wrap);
max_warp.style.height = "37.55" + "rem";
document.ontouchmove = function(e){

}
}

}

set_screen(“.wrap”);