美文网首页
JS动态计算fontSize值

JS动态计算fontSize值

作者: 卖菠萝的Leo丶 | 来源:发表于2018-05-10 09:09 被阅读0次

window.onload =function(){

        /*720代表设计师给的设计稿的宽度,你的设计稿是多少,就写多少;100代表换算比例,这里写100是 为了以后好算,比如,你测量的一个宽度是100px,就可以写为1rem,以及1px=0.01rem等等*/

getRem(720,100)};

    window.onresize =function(){ getRem(720,100)};

functiongetRem(pwidth,prem){

        varhtml =document.getElementsByTagName("html")[0];

        varoWidth =document.body.clientWidth ||document.documentElement.clientWidth;            html.style.fontSize = oWidth/pwidth*prem +"px";

}

相关文章

网友评论

      本文标题:JS动态计算fontSize值

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