码迷,mamicode.com
首页 > 移动开发 > 详细

移动端适配之rem

时间:2018-09-16 12:23:47      阅读:223      评论:0      收藏:0      [点我收藏+]

标签:rip   div   window   移动   res   html   UNC   idt   document   

<script>
        function setSize(){
            var a = document.documentElement ? document.documentElement.clientWidth : document.body.clientWidth;
            if(a > 750) {
                a = 750
            };
            document.documentElement.style.fontSize = a * 1 / 16 + "px";
            _htmlFontSize = a * 1 / 16;
        }
        setSize();

        window.onresize = function(){
            setSize();
        }
    </script>

 

移动端适配之rem

标签:rip   div   window   移动   res   html   UNC   idt   document   

原文地址:https://www.cnblogs.com/happyty/p/9655007.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!