美文网首页
移动端 适配

移动端 适配

作者: LH8966 | 来源:发表于2019-02-11 14:51 被阅读0次
    function init() {
        var screenW = document.documentElement.offsetWidth || document.body.offsetWidth;
        var oHtml = document.getElementsByTagName('html')[0];
        oHtml.style.fontSize = (100 * screenW / 375) + 'px';
    }
    
    init();
    window.addEventListener('orientationchange', init);
    window.addEventListener('resize', init);
    

    相关文章

      网友评论

          本文标题:移动端 适配

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