You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
xy-frontend/src/utils/rem.js

13 lines
392 B
JavaScript

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

//兼容处理
// function setHtml() {
// //获取设备宽度
// var deviceWidth = document.documentElement.offsetWidth;
// //给html标签设置fontSize就是给rem赋值
// document.documentElement.style.fontSize = (deviceWidth / 375) * 10 + "px";
// }
// //窗口大小变化的时候执行
// window.onresize = setHtml;
// //页面初始加载时也要触发
// //setHtml();