美文网首页
vue移动端rem布局适配

vue移动端rem布局适配

作者: 伴歌知行 | 来源:发表于2021-08-27 09:20 被阅读0次

    使用 rem 单位进行适配,使用以下两个工具:

    1、安装工具

    npm install postcss-pxtorem lib-flexible
    

    2、新建postcss.config.js,内容配置如下

    module.exports = {
      plugins: {
        'postcss-pxtorem': {
          rootValue: 75,   // 此处75是根据设计稿尺寸750设置,如果设计稿尺寸是375则改为37.5
          propList: ['*'],
        },
      },
    };
    

    附录:如果项目中使用了vant组件,并且你的项目的设计稿尺寸不是375,而是750或其他尺寸时,由于vant组件是375尺寸的,所以要在postcss.config.js进行区分

    // postcss.config.js
    module.exports = {
      plugins: {
        // postcss-pxtorem 插件的版本需要 >= 5.0.0
        'postcss-pxtorem': {
          rootValue({ file }) {
            return file.indexOf('vant') !== -1 ? 37.5 : 75;
          },
          propList: ['*'],
        },
      },
    };
    

    相关文章

      网友评论

          本文标题:vue移动端rem布局适配

          本文链接:https://www.haomeiwen.com/subject/rwzpiltx.html