js处理移动端有虚拟按键影响页面布局的处理方法

来源:互联网 发布:java 读取txt文件 编辑:程序博客网 时间:2024/06/05 01:18

//针对移动端有虚拟按键导致高度短影响整个页面的布局给予滚动条处理

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”);


原创粉丝点击