1.先安装插件
npm install postcss-px-to-viewport --save-dev
2.在文件根目录下添加 postcss.config.js 文件
1 module.exports = { 2 plugins: { 3 autoprefixer: {}, 4 ‘postcss-px-to-viewport‘: { 5 viewportWidth: 375, // 视窗的宽度,对应的是我们设计稿的宽度. 6 viewportHeight: 667, // 视窗的高度,对应的是我们设计稿的高度.(也可以不配置) 7 unitPrecision: 5, // 指定`px`转换为视窗单位值的小数位数(很多时候无法整除) 8 viewportUnit: ‘vw‘, // 指定需要转换成的视窗单位,建议使用vw 9 selectorBlackList: [‘ignore‘, ‘tab-bar‘, ‘tab-bar-item‘], // 指定不需要转换的类,后面再讲. 10 minPixelValue: 1, // 小于或等于`1px`不转换为视窗单位. 11 mediaQuery: false // 允许在媒体查询中转换`px` 12 } 13 } 14 }
注意:
selectorBlackList 中的 ignore 是类名,添加该类名即可以不需要转换