标签:
function fixRem(){ var windowWidth = document.documentElement.clientWidth || window.innerWidth || document.body.clientWidth; windowWidth = windowWidth > 640 ? 640 : windowWidth; var rootSize = 20 * ( windowWidth / 320); var htmlNode = document.getElementsByTagName("html")[0]; htmlNode.style.fontSize = rootSize+‘px‘; } fixRem(); window.addEventListener(‘resize‘, fixRem, false);
标签:
原文地址:http://www.cnblogs.com/camille666/p/mobile_fontsize_pxtransferrem.html