适配手机端之 rem

Posted Lulin1

tags:

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

(function() {
        var psdWidth = 1080,
            maxRem = 100,
            ch = document.documentElement.clientHeight || document.body.clientHeight,
            cw = document.documentElement.clientWidth || document.body.clientWidth,
            pageWidth;

        var calcRem = function() {
            if (window.orientation && (window.orientation == 90 || window.orientation == -90)) {
                pageWidth = Math.max(ch, cw);
            } else {
                pageWidth = Math.min(ch, cw);
            }

            var rem = (pageWidth / psdWidth * 100).toFixed(2);
            rem = Math.min(rem, maxRem);
            window.rem = rem;
            document.getElementsByTagName(html‘)[0].style.fontSize = rem + ‘px‘;
        };

        calcRem();

        window["onorientationchange" in window ? "onorientationchange" : "onresize"] = calcRem;
    })();

  

  Eg. PSD中的width为378px,那么在手机端代码中为378/100=3.78rem.

 

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

移动端适配(手机端rem布局详解)

移动端根据rem适配时,pc端调试器和手机显示效果不一致问题

rem 移动端适配

rem在手机移动端app中的兼容适配问题

rem在手机移动端app中的兼容适配问题

移动端适配