// 設計稿自定義爲375px 利用測量的px大小除以50px 便可獲得所需rem值
(function () {
remLayout();
function remLayout() {
// 獲取屏幕寬度
var w = document.documentElement.clientWidth || document.body.clientWidth;
w = w > 768 ? 768 : w;
w = w <= 320 ? 320 : w;
// document.documentElement 獲取到的html標籤
document.documentElement.style.fontSize = w / 7.5 + 'px';
}
// resize 監聽頁面變化
window.addEventListener('resize', function () {
remLayout();
}, false);
})();