rem使用前的JS

rem使用前用一段JS可获取当前移动设备的分辨率,以便于我们设置html的font-size值。

  function rem() { 
      var w = Math.min(document.documentElement.getBoundingClientRect().width, 500);
      document.getElementsByTagName('html')[0].style.fontSize = w * 100 / 320 + 'px'; 
  }
  rem();
  window.onresize = function() {
      rem();
  };

你可能感兴趣的:(rem使用前的JS)