Rem.js

那年仲夏 提交于 2020-01-11 10:08:08
750 代表设计稿的宽度;
100 代表换算比例,写100是 为了好计算;比如,一个元素的宽度是100px,就可以写1rem,以及1px=0.01rem
    // rem 前端自适应代码
    (function (win) {
        let doc = win.document, docEl = doc.documentElement, timer = null;
        function refreshRem() {
          //  ele.getBoundingClientRect()    返回元素的大小及其相对于视口的位置。
          
            let width = docEl.getBoundingClientRect().width;    
            if (width > 750) { // 最大宽度,  750为设计稿的宽度
                docEl.style.fontSize =  '100px';
            }else{
                var rem = width / 3.75;
                docEl.style.fontSize = rem + 'px';
            }
        }
        
        win.addEventListener('resize', function () {
            clearTimeout(tid);
            timer = setTimeout( refreshRem , 300);
        }, false);
        
        win.addEventListener('pageshow', function (e) {
          //  e.persisted  判断是否后退进入
          
            if (e.persisted) {
                clearTimeout(tid);
                timer = setTimeout(refreshRem, 300);
            }
        }, false);
        
        refreshRem();
        
    })(window);
标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!