当前位置 : 主页 > 网络编程 > JavaScript >

rem布局产生的bug

来源:互联网 收集:自由互联 发布时间:2021-06-30
解决因为手机设置字体大小导致h5页面在webview中变形的BUG function htmlFontSize(){ var h = Math.max(document.documentElement.clientHeight, window.innerHeight || 0); var w = Math.max(document.documentElement.clientWidth, wi
解决因为手机设置字体大小导致h5页面在webview中变形的BUG
function htmlFontSize(){
    var h = Math.max(document.documentElement.clientHeight, window.innerHeight || 0);
    var w = Math.max(document.documentElement.clientWidth, window.innerWidth || 0);
    var width = w > h ? h : w;
    width = width > 720 ? 720 : width
    var fz = ~~(width*100000/36)/10000
    document.getElementsByTagName("html")[0].style.cssText = 'font-size: ' + fz +"px";
    var realfz = ~~(+window.getComputedStyle(document.getElementsByTagName("html")[0]).fontSize.replace('px','')*10000)/10000
    if (fz !== realfz) {
        document.getElementsByTagName("html")[0].style.cssText = 'font-size: ' + fz * (fz / realfz) +"px";
    }
}
上一篇:prop 与 attr 的区别
下一篇:MongoDB Demo
网友评论