响应式font-size计算

7.5:设计稿尺寸处以100

css中的样式:(设计稿中的数值/100),单位:rem

document.ready=function(){
           var html = document.documentElement;
     var windowWidth = html.clientWidth;
     html.style.fontSize = windowWidth / 7.5 + 'px';
           document.getElementsByTagName("body")[0].style.fontSize = windowWidth / 7.5 + 'px';
     window.onresize = function(){
         var windowWidth = html.clientWidth;
         html.style.fontSize = windowWidth / 7.5 + 'px';
         document.getElementsByTagName("body")[0].style.fontSize = windowWidth / 7.5 + 'px';
     }

}

你可能感兴趣的:(CSS,javascript)