設置html默認font-size: 100px,此時默認的頁面的width是750px,而後根據手機大小改變html節點的font-size,從而改變rem的大小,代碼以下:html
<script>
var size = 50;
var w = window.screen.width;
var fontSize = (w/375)*size;
document.getElementsByTagName('html')[0].style.fontSize=fontSize+'px';
</script>htm