zoukankan      html  css  js  c++  java
  • 如何使用rem写自适应的手机端页面?

    主要使用了js控制

    /**
     * @description: rem缩放
     */
    (function () {
    	
    	
    	
        updateOrientation();
        var supportOrientation = (typeof window.orientation === 'number' &&
            typeof window.onorientationchange === 'object');
        if (supportOrientation) {
            window.addEventListener('orientationchange', updateOrientationDelay, false);
        } else {
            window.addEventListener('resize', updateOrientationDelay, false);
        }
    
        function updateOrientation() {
            var deviceWidth = document.documentElement.clientWidth;
            if (deviceWidth > 750) deviceWidth = 750;
            document.documentElement.style.fontSize = deviceWidth / 7.5 + 'px';
        }
    
        function updateOrientationDelay() {
            setTimeout(function () {
                updateOrientation()
            }, 100);
        }
    }());
    

    再搭配一个reset.css

    就可以顺利开始了 这里设计稿是750的,视真实情况而定。

  • 相关阅读:
    Excel VB Script
    Excel Text Converter as C# Format
    快捷键
    如何使用 MasterPage
    Excel 오른쪽버튼 윗주
    Oracle Hints
    ASP.NET 弹出窗口
    Log4Net
    word 修改 表宽度
    While 나가는 법
  • 原文地址:https://www.cnblogs.com/heson/p/11205416.html
Copyright © 2011-2022 走看看