美文网首页
js设置移动端媒体查询

js设置移动端媒体查询

作者: 锦锦_jane | 来源:发表于2020-07-22 17:35 被阅读0次
    let rootWidth = document.documentElement.clientWidth || document.body.clientWidth;
    let rootHeights = document.documentElement.clientHeight || document.body.clientHeight;
    let rootDom = document.querySelector('html');
    if(rootWidth<440){
        rootDom.style.fontSize = rootWidth /10.8 + 'px';
    }else {
        rootWidth=440
        rootDom.style.fontSize = rootWidth /10.8 + 'px';
        window.onload = () => {
            document.getElementsByTagName("body")[0].style.minHeight = rootHeights+"px";
        }
    }
    
    

    相关文章

      网友评论

          本文标题:js设置移动端媒体查询

          本文链接:https://www.haomeiwen.com/subject/opytlktx.html