个人项目中踩坑:
- 使用lib-flexible配合postcss-pxtorem无法正常使用;
- postcss-pxtorem版本6.0.0太高导致报错问题;
适配方案:postcss-pxtorem搭配rem.js文件,具体步骤如下。
- 安装postcss-pxtorem
npm i postcss-pxtorem@5.1.1
- 修改package.json文件
"postcss": {
"plugins": {
"autoprefixer": {},
"postcss-pxtorem": {
"rootValue": 16,
"propList": [
"*"
]
}
}
}
- 新增rem.js文件
// rem等比适配配置文件
// 基准大小
const baseSize = 16
// 设置 rem 函数
function setRem () {
// 当前页面宽度相对于 1920宽的缩放比例,可根据自己需要修改。
const scale = document.documentElement.clientWidth / 1920
// 设置页面根节点字体大小(“Math.min(scale, 2)” 指最高放大比例为2,可根据实际业务需求调整)
document.documentElement.style.fontSize = baseSize * Math.min(scale, 2) + 'px'
}
// 初始化
setRem()
// 改变窗口大小时重新设置 rem
window.onresize = function () {
setRem()
}
- 在main.js文件重引入rem.js文件;
- 重启;
网友评论