window.onload?=?function(){
????/*720代表設計師給的設計稿的寬度,你的設計稿是多少界斜,就寫多少;100代表換算比例,這里寫100是
??????為了以后好算,比如,你測量的一個寬度是100px,就可以寫為1rem,以及1px=0.01rem等等*/
????getRem(720,100)
};
window.onresize?=?function(){
????getRem(720,100)
};
function?getRem(pwidth,prem){
????var?html?=?document.getElementsByTagName("html")[0];
????var?oWidth?=?document.body.clientWidth?||?document.documentElement.clientWidth;
????html.style.fontSize?=?oWidth/pwidth*prem?+?"px";
}