js设置移动端媒体查询
作者:
锦锦_jane | 来源:发表于
2020-07-22 17:35 被阅读0次let rootWidth = document.documentElement.clientWidth || document.body.clientWidth;
let rootHeights = document.documentElement.clientHeight || document.body.clientHeight;
let rootDom = document.querySelector('html');
if(rootWidth<440){
rootDom.style.fontSize = rootWidth /10.8 + 'px';
}else {
rootWidth=440
rootDom.style.fontSize = rootWidth /10.8 + 'px';
window.onload = () => {
document.getElementsByTagName("body")[0].style.minHeight = rootHeights+"px";
}
}
本文标题:js设置移动端媒体查询
本文链接:https://www.haomeiwen.com/subject/opytlktx.html
网友评论