码迷,mamicode.com
首页 > 其他好文 > 详细

单位px 转换成 rem

时间:2017-06-20 22:57:04      阅读:190      评论:0      收藏:0      [点我收藏+]

标签:client   mobile   max   ati   on()   res   return   turn   宽度   

$(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

标签:client   mobile   max   ati   on()   res   return   turn   宽度   

原文地址:http://www.cnblogs.com/kelly2017/p/7056712.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!