
(function () {
var html = document.documentElement;
function onWindowResize() {
html.style.fontSize = html.getBoundingClientRect().width / 20 + ‘px‘;
}
window.addEventListener(‘resize‘, onWindowResize);
onWindowResize();
})();
原文:http://www.cnblogs.com/yymb/p/5811516.html