- 安装依赖:npm install px2rem-loader --save-dev
- 找到node_modules下lib-flexible文件夹flexible.js文件,更改refreshRem方法适配的屏幕宽度
function refreshRem() {
var width = docEl.getBoundingClientRect().width;
if (width / dpr > 1500) {
width = 1500 * dpr;
}
var rem = width / 11;
docEl.style.fontSize = rem + 'px';
flexible.rem = win.rem = rem;
}