1. 程式人生 > >單位px 轉換成 rem

單位px 轉換成 rem

cti obi ret fontsize window 單位 cli wid fun

$(function(){
//設置rem
function mobile(){
var size=100, //規定rem與px之間值的轉換
maxWidth =750; //設置基準寬度。
ratio = function(){
var r = document.documentElement.clientWidth / maxWidth;
return r>=1?1:r<=0.234?0.234:r;
};
set = function(){
document.documentElement.style.fontSize = ratio() * size +‘px‘;
}();
window.onresize = mobile;
}
mobile();
})

單位px 轉換成 rem