rem适配

作者: BugMyGod | 来源:发表于2018-12-06 15:37 被阅读0次

    rem.js

    "use strict"
    window.onload = function(){
        /*720代表设计师给的设计稿的宽度,100代表换算比例,这里写100是为了以后好算,比如,你测量的一个宽度是100px,就可以写为1rem,以及1px=0.01rem等等*/
        getRem(750,100)
    };
    window.onresize = function(){
        getRem(750,100)
    };
    function getRem(pwidth,prem){
        window.html = document.getElementsByTagName("html")[0];
        window.oWidth = document.body.clientWidth || document.documentElement.clientWidth;
        console.log(oWidth)
        html.style.fontSize = oWidth/pwidth*prem + "px";
        console.log(html.style.fontSize)
    }
    

    相关文章

      网友评论

          本文标题:rem适配

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