zoukankan      html  css  js  c++  java
  • 移动端项目的配置

     <!-- 做移动端项目的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>
    
  • 相关阅读:
    6.24Java网络编程之IP
    Network
    Network
    Network
    Network
    ES
    JavaWeb
    ES
    ES
    ES
  • 原文地址:https://www.cnblogs.com/lsy6/p/13868101.html
Copyright © 2011-2022 走看看