手机端页面自适应解决方案

来源:互联网 发布:淘宝卖家评价规则 编辑:程序博客网 时间:2024/05/29 14:10


  (function () {
    /**
     * 7.5=设计稿尺寸/100
     * css元素尺寸=设计稿元素尺寸/100;
     */
    var change = 'orientationchange' in window ? 'orientationchange' : 'resize';
    function calculate() {
        var deviceWidth = document.documentElement.clientWidth;
        console.log(deviceWidth);
        if (deviceWidth < 320) {
            deviceWidth = 320;
        } else if (deviceWidth > 750) {
            deviceWidth = 750;
        }
        document.documentElement.style.fontSize = deviceWidth / 7.5 + 'px';
    };
    window.addEventListener(change, calculate, false);
    calculate();
})();

0 0
原创粉丝点击