동적 설정 font-size

1266 단어
rem 단위의 프로젝트에 대해 html의font-size를 계산하고
//  html font-size  
(function(){ 
function resizeBaseFontSize(){
var rootHtml = document.documentElement,
deviceWidth
= rootHtml.clientWidth;
if(deviceWidth > 640){
deviceWidth
= 640;
}
rootHtml.style.fontSize
= deviceWidth / 7.5 + "px";
} resizeBaseFontSize(); window.addEventListener(
"resize", resizeBaseFontSize, false); window.addEventListener("orientationchange", resizeBaseFontSize, false); })();

다음으로 전송:https://www.cnblogs.com/oygg/p/6999640.html

좋은 웹페이지 즐겨찾기