1-1 移动端视配
将屏幕等分成10等分,相当于10个rem单位
//https://m.1905.com/ 参考网站
<script>
let w = window.innerWidth;
let html = document.getElementsByTagName("html")[0];
html.style.fontSize = w*0.1+"px";
window.onresize = function(){
let w = document.documentElement.clientWidth;
console.log(w);
html.style.fontSize = w*0.1+"px";
}
</script>