美文网首页
浏览器文字大小设置

浏览器文字大小设置

作者: 丨终于白发 | 来源:发表于2020-09-17 16:38 被阅读0次
    //根据屏幕分辨率来确定rem基准以适应不同屏幕
            (function() {
                var availWidth = window.screen.width;
                if (!availWidth) {
                    return 0;
                }
                availWidth = availWidth < 1280 ? 1280 : availWidth;
                var fontSize = parseFloat(100 / 1280 * availWidth, 10).toFixed(2);
                var root = document.documentElement || document.body;
                root.style.fontSize = fontSize + 'px';
                return fontSize;
            })()

    相关文章

      网友评论

          本文标题:浏览器文字大小设置

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