<!-- 做移动端项目的js代码 (100px == 1rem )-->
<script>
function auto() {
// 声明一个变量 deviceWidth等于当前设备的宽度
var deviceWidth = document.documentElement.clientWidth;
// 控制台打印
console.log(deviceWidth);
if (deviceWidth > 750) {
deviceWidth = 750
}
var fs = (deviceWidth / 750) * 100
document.documentElement.style.fontSize = fs + "px";
}
auto();
window.onresize = function () {
auto();
}
</script>