当前位置:   article > 正文

vue3+vite px转成rem实现响应式布局_vite px转rem

vite px转rem

安装
 

npm install postcss postcss-pxtorem --save-dev

在vite.config.ts种引入使用
 

  1. import postCssPxToRem from 'postcss-pxtorem';
  2. export default defineConfig(({ mode, command }) => {
  3. return {
  4. css: {
  5. postcss:{
  6. plugins:[
  7. postCssPxToRem({
  8. rootValue: 1.05,
  9. propList: ['*'],
  10. })
  11. ]
  12. }
  13. },
  14. }
  15. })

在mian.ts中设置html跟节点的字体大小

  1. // rem等比适配配置文件
  2. // 基准大小
  3. const baseSize = 1
  4. // 设置 rem 函数
  5. function setRem () {
  6. // 当前页面宽度相对于 1920宽的缩放比例,可根据自己需要修改。
  7. const scale = document.documentElement.clientWidth / 1920
  8. // 设置页面根节点字体大小(“Math.min(scale, 2)” 指最高放大比例为2,可根据实际业务需求调整)
  9. document.documentElement.style.fontSize = baseSize * Math.min(scale, 2) + 'px'
  10. }
  11. // 初始化
  12. setRem()
  13. // 改变窗口大小时重新设置 `rem`
  14. window.onresize = function () {
  15. setRem()
  16. }

声明:本文内容由网友自发贡献,转载请注明出处:【wpsshop】
推荐阅读
相关标签
  

闽ICP备14008679号