JS_0054:JS 动态设置字体大小 JS 判断浏览器是否联网

1,

        // 动态设置字体大小
        var html = document.getElementsByTagName("html")[0];
        if (html) {
            var w = window.innerWidth,
                fontSize = (750 < w ? 750 : w) / 750 * 100;
            html.style.fontSize = fontSize + "px"
        }
        window.onload = function () {
            window.onresize = function () {
                var a = window.innerWidth;
                html.style.fontSize = (750 < a ? 750 : a) / 750 * 100 + "px";
                console.log(html.style.fontSize);
            }
        };

 

 

2,判断浏览器是否联网

        // if(window.navigator.onLine==true){  
        //     console.log('在线');
        // }else{  
        //     console.log('离线');
        // };

 

posted @ 2022-03-18 16:10  琥珀君  阅读(94)  评论(0编辑  收藏  举报