rem封装.js 445 B

1234567891011121314151617181920
  1. /**
  2. * 动态计算根字体大小 页面所有尺寸都用rem写 等比适配手机
  3. * 750 = 10rem
  4. * 1rem = 75px
  5. * */
  6. (function() {
  7. const desighWidth = 750;
  8. const html = document.documentElement;
  9. function setRem() {
  10. const width = html.clientWidth;
  11. const fontSize = width / desighWidth * 100;
  12. html.style.fontSize = fontSize + 'px';
  13. }
  14. setRem();
  15. window.addEventListener("resize",setRem);
  16. })()