页面响应式rem
function handleResize() {
var htmlWidth = document.documentElement.clientWidth || document.body.clientWidth
let htmlDom = document.getElementsByTagName('html')[0]
// 处理不同页面宽度下rem的值
if (htmlWidth < 1400 && htmlWidth > 1000) {
htm...
zmblog.hashnode.dev1 min read