移动端rem适配-JS

Posted boomupupup

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了移动端rem适配-JS相关的知识,希望对你有一定的参考价值。

(function(){
    var deviceWidth = document.documentElement.clientWidth;   //设备像素宽度
    if(deviceWidth > 640){
         deviceWidth = 640;
    }
    document.documentElement.style.fontSize = deviceWidth*2 / 7.5 + ‘px‘;
})();

 

以上是关于移动端rem适配-JS的主要内容,如果未能解决你的问题,请参考以下文章

移动端rem适配-JS

移动端rem适配 flex.js

移动端之js控制rem,适配字体

rem移动端适配方案

移动端使用rem适配手机端 (阿里js文件)

移动端适配方案:js实现动态改变根元素的字体大小