1. 程式人生 > >移動端rem適配 flex.js

移動端rem適配 flex.js

(function() {
document.addEventListener('DOMContentLoaded', function () {
var html = document.documentElement;
var windowWidth = html.clientWidth;
html.style.fontSize = windowWidth / 7.5 + 'px';
//等價於html.style.fontSize = windowWidth / 750 * 100 + 'px';
}, false);
})();

二倍圖 750