rem適配
一、移動(dòng)端適配包
npm i lib-flexible -S
import Vue from 'vue'
import App from './App.vue'
import 'lib-flexible' // 引入適配包
Vue.config.productionTip = false
new Vue({
render: h => h(App),
}).$mount('#app')
- 3.在 index.html 編輯 viewport
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<!-- 加上以下代碼 -->
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<link rel="icon" href="<%= BASE_URL %>favicon.ico" rel="external nofollow" >
<title><%= htmlWebpackPlugin.options.title %></title>
</head>
<body>
<noscript>
<strong>We're sorry but <%= htmlWebpackPlugin.options.title %> doesn't work properly without JavaScript enabled. Please enable it to continue.</strong>
</noscript>
<div id="app"></div>
<!-- built files will be auto injected -->
</body>
</html>
二效斑、CSS樣式適配
- 1、安裝 px2rem-loader 包( 只適用于css樣式 )
npm i px2rem-loader -D
module.exports={
chainWebpack: (config) => {
config.module
.rule('css')
.test(/\.css$/)
.oneOf('vue')
.resourceQuery(/\?vue/)
.use('px2rem')
.loader('px2rem-loader')
.options({
remUnit: 75,
})
},
}
三缓屠、CSS預(yù)處理語(yǔ)言樣式適配
- 1奇昙、安裝 postcss-plugin-px2rem ( 適用于css預(yù)處理語(yǔ)言 )
npm i postcss-plugin-px2rem -D
module.exports = {
css: {
loaderOptions: {
postcss: {
plugins: [
require('postcss-plugin-px2rem')({
rootValue: 75, //換算基數(shù)敌完, 默認(rèn)100 储耐,這樣的話把根標(biāo)簽的字體規(guī)定為1rem為50px,這樣就可以從設(shè)計(jì)稿上量出多少個(gè)px直接在代碼中寫(xiě)多上px了。
// unitPrecision: 5, //允許REM單位增長(zhǎng)到的十進(jìn)制數(shù)字滨溉。
//propWhiteList: [], //默認(rèn)值是一個(gè)空數(shù)組什湘,這意味著禁用白名單并啟用所有屬性。
// propBlackList: [], //黑名單
exclude: /(node_module)/, //默認(rèn)false晦攒,可以(reg)利用正則表達(dá)式排除某些文件夾的方法闽撤,例如/(node_module)\/如果想把前端UI框架內(nèi)的px也轉(zhuǎn)換成rem,請(qǐng)把此屬性設(shè)為默認(rèn)值
// selectorBlackList: [], //要忽略并保留為px的選擇器
// ignoreIdentifier: false, //(boolean/string)忽略單個(gè)屬性的方法脯颜,啟用ignoreidentifier后哟旗,replace將自動(dòng)設(shè)置為true。
// replace: true, // (布爾值)替換包含REM的規(guī)則栋操,而不是添加回退闸餐。
mediaQuery: false, //(布爾值)允許在媒體查詢中轉(zhuǎn)換px。
minPixelValue: 3, //設(shè)置要替換的最小像素值(3px會(huì)被轉(zhuǎn)rem)矾芙。 默認(rèn) 0
}),
],
},
},
},
}
- 3舍沙、在 package.json 配置,加入 postcss 相關(guān)插件
{
"postcss": {
"plugins": {
"autoprefixer": {},
"precss": {}
}
}
}