移动端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的主要内容,如果未能解决你的问题,请参考以下文章