$(window).resize(function(){ setRem(640); }); $(function(){ setRem(640); }) function setRem(maxWidth){ var sw = $(window).width(); var radio = sw/maxWidth>1?1:sw/maxWidth; var perSize = radio*100 + 'px'; document.documentElement.style.fontSize=perSize; }
640表示设计图纸宽度为640像素,在使用过程中,测量宽度是 20px ,css中对应尺寸是 0.2rem。