Vant中使用rem

Vant 中的样式默认使用 px 作为单位,使用 rem 单位,按照以下步骤:

  • postcss-pxtorem 是一款 postcss 插件,用于将单位转化为 rem
  • lib-flexible 用于设置 rem 基准值

一、使用 lib-flexible 动态设置 REM 基准值(html 标签的字体大小)
1、安装

# yarn add amfe-flexible
npm i amfe-flexible

2、然后在 main.js 中加载执行该模块

import 'amfe-flexible'
  • 观察 html 标签 font-size 的变化。

二、使用 postcss-pxtorem 将 px 转为 rem
1、安装

# yarn add -D postcss-pxtorem
# -D 是 --save-dev 的简写
npm install postcss-pxtorem -D

2、然后在项目根目录中创建 .postcssrc.js 文件

module.exports = {
  plugins: {
    'autoprefixer': {
      browsers: ['Android >= 4.0', 'iOS >= 8']
    },
    'postcss-pxtorem': {
      rootValue: 37.5,
      propList: ['*']
    }
  }
}

3、配置完,重新启动服务

最后测试:刷新浏览器页面,审查元素的样式查看是否已将 px 转换为 rem。

需要注意的是:

  • 该插件不能转换行内样式中的 px,例如
<div style="width: 200px;"></div>
上一篇:微信小程序之分享或转发功能(自定义button样式)


下一篇:微图书销售小程序--测试心得(个人部分)