base.js 354 B

12345678910111213
  1. // 自定义
  2. (function () {
  3. var recalc = function () {
  4. var width = document.documentElement.offsetWidth
  5. var fontSize = 100 / 1240 * width
  6. document.querySelector('html').style.fontSize = (fontSize) + 'px'
  7. }
  8. window.addEventListener('resize', recalc, false)
  9. document.addEventListener('DOMContentLoaded', recalc, false)
  10. recalc()
  11. })()