1.安裝lib-flexible postcss-pxtorem
插件css
npm install lib-flexible postcss-pxtorem --save
2.在 main.js
文件中引入vue
import 'lib-flexible/flexible.js'
3.新建 postcss.config.js
或者在package.json
中寫入node
module.exports = { plugins: { autoprefixer: {}, "postcss-pxtorem": { "rootValue": 192,// 設計稿寬度或者目前正常分辨率的1/10 selectorBlackList: [".ivu"],// 要忽略的選擇器並保留爲px。 minPixelValue: 2,// 設置要替換的最小像素值。 "propList": [ "*" ]// 須要作轉化處理的屬性,如`hight`、`width`、`margin`等,`*`表示所有 } } }
4.找到 node_modules/lib-flexible/flexible.js
修改源文件(做者寫死了寬度)vue-cli
function refreshRem(){ var width = docEl.getBoundingClientRect().width; if (width / dpr > 540) { //width = 540 * dpr; //獲取屏幕寬度,若是寬度大於540,被寫死了 width = width * dpr; //獲取屏幕寬度 } var rem = width / 10; //縮放比例能夠按實際來 docEl.style.fontSize = rem + 'px'; flexible.rem = win.rem = rem; }
個人屏幕是寬度1440,這樣就能夠了
npm