美文网首页
移动端rem配置

移动端rem配置

作者: WillLi | 来源:发表于2016-10-19 18:13 被阅读0次

方案一

var pageSize = 6.4;
document.documentElement.style.fontSize=document.documentElement.clientWidth/pageSize+'px';
window.addEventListener("resize",
    function(){
       document.documentElement.style.fontSize=document.documentElement.clientWidth/pageSize+'px';
},false);

方案二

var h = window.screen.width - $(window).height();
var remBase = Math.min($(window).width(),$(window).height()+h)/16;
if(remBase==0){remBase='20px';}
$('html').css('font-size',remBase);

相关文章

网友评论

      本文标题:移动端rem配置

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