rem.js 333 B

123456789101112
  1. window.onload = function () {
  2. getRem(1920, 32)
  3. };
  4. window.onresize = function () {
  5. getRem(1920, 32)
  6. };
  7. function getRem(pwidth, prem) {
  8. var html = document.getElementsByTagName("html")[0];
  9. var oWidth = document.body.clientWidth || document.documentElement.clientWidth;
  10. html.style.fontSize = oWidth / pwidth * prem + "px";
  11. }