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('离线'); // };
琥珀君的博客