移动端项目的配置

 <!-- 做移动端项目的js代码 (100px == 1rem )-->
       <script>
            function auto() {
            // 声明一个变量 deviceWidth等于当前设备的宽度
            var deviceWidth = document.documentElement.clientWidth;
            // 控制台打印
            console.log(deviceWidth);
            if (deviceWidth > 750) {
                deviceWidth = 750
            }
            var fs = (deviceWidth / 750) * 100
            document.documentElement.style.fontSize = fs + "px";
            }
            auto();
            window.onresize = function () {
                auto();
            }
       </script>
posted @ 2020-10-24 11:20  残酷^现实  阅读(148)  评论(0编辑  收藏  举报