rem适配

作者: 前端小宇 | 来源:发表于2017-12-08 15:03 被阅读0次

    function setRootFont() {

    var screenWidth = window.innerWidth > 768 ? 768 : window.innerWidth;

    var rootFontSize = screenWidth / 375 * 100;

    document.getElementsByTagName('html')[0].style.fontSize = rootFontSize + "px";

    }

    setRootFont();

    window.onresize = setRootFont;

    相关文章

      网友评论

          本文标题:rem适配

          本文链接:https://www.haomeiwen.com/subject/qemeixtx.html