• vue中使用postcsspxtorem实现适配


    vue中使用postcss-pxtorem实现适配

     

    场景:vue搭建移动端页面,main.js引入全局css报错。

    原因:用了postcss-px2rem与postcss-px2rem-exclude导致的问题,

    解决方案:卸载后postcss-px2rem, 安装使用postcss-pxtorem。在postcss.config.js设置如下代码,可以自行更改设置,解决问题。

     

    安装amfe-flexible和postcss-pxtorem

    npm install postcss-pxtorem -S

    npm install amfe-flexible -S

    postcss-pxtorem将px转为rem;

    amfe-flexible可进行屏幕自适应;

    配置及使用

    1、在main.js中引入amfe-flexible

    import  "amfe-flexible";

    2、根目录下添加postcss.config.js

    module.exports = () => ({

      plugins: [

      // autoprefixer 自动补齐 CSS3 前缀,适配不同浏览器

        require('autoprefixer')({

          overrideBrowserslist: [

            "last 10 versions", // 所有主流浏览器最近10版本用

          ],

        }),

        require('postcss-pxtorem')({

          rootValue: 192.0, //设计稿元素尺寸/10,这里设计稿宽度为1920

          propList: ["*"], //是一个存储哪些将被转换的属性列表,这里设置为['*']全部,假设需要仅对边框进行设置,可以写['*', '!border*']

          unitPrecision: 3, //保留rem小数点多少位

          selectorBlackList: ['el-input', 'el-step', 'no-'],//则是一个对css选择器进行过滤的数组,比如你设置为['el-'],那所有el-类名里面有关px的样式将不被转换,这里也支持正则写法。

          replace: true,

          mediaQuery: false, //媒体查询( @media screen 之类的)中不生效

          // minPixelValue: 3, //px小于3的不会被转换

        })

      ]

    });

    配置完成之后,重启即可

    可能遇到问题

    运行报错如下

    Error: PostCSS plugin postcss-pxtorem requires PostCSS 8.

  • 相关阅读:
    WCF系列教程之WCF服务配置工具
    WCF系列教程之WCF服务配置
    C# 多线程系列之异步回调(委托)
    WCF系列教程之消息交换模式之请求与答复模式(Request/Reply)
    C# ref与out关键字解析
    WCF系列教程之WCF消息交换模式之单项模式
    WCF系列教程之初识WCF
    C# 装箱和拆箱
    C# checked和unchecked运算符
    Specified key was too long; max key length is 1000 bytes问题解决
  • 原文地址:https://www.cnblogs.com/songfengyang/p/16298656.html
Copyright © 2020-2023  润新知