安装lib-flexible适配大屏幕没生效

693 阅读1分钟
  1. 安装依赖:npm install px2rem-loader --save-dev
  2. 找到node_moduleslib-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;
}