rem.js 573 B

12345678910111213
  1. window.onload = function(){
  2. /*750代表设计师给的设计稿的宽度,你的设计稿是多少,就写多少;100代表换算比例,这里写100是
  3. 为了以后好算,比如,你测量的一个宽度是100px,就可以写为1rem,以及1px=0.01rem等等*/
  4. getRem(750,100)
  5. };
  6. window.onresize = function(){
  7. getRem(750,100)
  8. };
  9. function getRem(pwidth,prem){
  10. var html = document.getElementsByTagName("html")[0];
  11. var oWidth = document.body.clientWidth || document.documentElement.clientWidth;
  12. html.style.fontSize = oWidth/pwidth*prem + "px";
  13. }