码迷,mamicode.com
首页 > 其他好文 > 详细

rem

时间:2019-10-22 00:53:33      阅读:115      评论:0      收藏:0      [点我收藏+]

标签:dom   loaded   fun   eve   query   one   content   add   listen   

一、屏幕宽度 / 设计稿宽度 *100 来设置根元素的 font-size   10px = 0.10rem

(function (doc, win) {
    var docEl = doc.documentElement,
        resizeEvt = orientationchange in window ? orientationchange : resize,
        recalc = function () {
            var clientWidth = docEl.clientWidth;
            if (!clientWidth) return;
            if(clientWidth>=640){
                docEl.style.fontSize = 100px;
            }else{
                docEl.style.fontSize = 100 * (clientWidth / 640) + px;
            }
        };

    if (!doc.addEventListener) return;
    win.addEventListener(resizeEvt, recalc, false);
    doc.addEventListener(DOMContentLoaded, recalc, false);
})(document, window);

 

二、

const MAX_FONT_SIZE = 42;

document.addEventListener(DOMContentLoaded, () => {
    const html = document.querySelector(html);
    let fontSize = window.innerWidth / 10;
    fontSize  = fontSize > MAX_FONT_SIZE ? MAX_FONT_SIZE : fontSize;
    html.style.fontSize = fontSize + px;
});
// 以 Iphone 6、6s、7、8 为设计基础。
// 定义预计根元素 fontSize。
$rootFontSize: 375 / 10;
// 定义像素转化为 rem 函数
@function px2rem ($px) {
    @return $px / $rootFontSize + rem;
}

 

rem

标签:dom   loaded   fun   eve   query   one   content   add   listen   

原文地址:https://www.cnblogs.com/zjz666/p/11717235.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!