js 移动端px rem适配之rem.js

function setRem() {
  let htmlWidth = document.documentElement.clientWidth || document.body.clientWidth
  let htmlDom = document.getElementsByTagName('html')[0]
  htmlDom.style.fontSize = htmlWidth / 20 * 8 / 3 + 'px'
}
setRem()
window.onresize = function() {
  setRem()
}

在main.js引入这个js就好了

你可能感兴趣的:(js 移动端px rem适配之rem.js)