健康同学微信公众号h5项目
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 satır
996B

  1. // https://github.com/michael-ciniawsky/postcss-load-config
  2. module.exports = ({ file }) => {
  3. return {
  4. plugins: {
  5. autoprefixer: {},
  6. 'postcss-px-to-viewport': {
  7. unitToConvert: 'px', // 要转化的单位
  8. viewportWidth: file.includes('vant') ? 375 : 750, // 视窗的宽度,对应的是我们设计稿的宽度,一般是750
  9. viewportHeight: 812, // 视窗的高度,根据750设备的宽度来指定,一般指定1334,也可以不配置
  10. unitPrecision: 6, // 指定`px`转换为视窗单位值的小数位数
  11. viewportUnit: 'vw', //指定需要转换成的视窗单位,建议使用vw
  12. selectorBlackList: [], // 指定不转换为视窗单位的类,可以自定义,可以无限添加,建议定义一至两个通用的类名
  13. minPixelValue: 1, // 小于或等于`1px`不转换为视窗单位,你也可以设置为你想要的值
  14. mediaQuery: false // 允许在媒体查询中转换`px`
  15. }
  16. }
  17. };
  18. };