• H5 使用Vant自适应布局 (postcss-pxtorem)


    1. 安装 postcss-pxtorem
    npm install postcss postcss-pxtorem --save-dev
    
    • 1
    1. 在根目录新建postcss.config.js,配置 postcss-pxtorem
    module.exports = {
        plugins: {
            // autoprefixer: {},
            'postcss-pxtorem': {
                // rootValue: 75, // 设计稿宽度的1/10
                rootValue({ file }) {
                    // 判断是否是vant的文件 如果是就使用 37.5为根节点字体大小
                    // 否则使用75 因为vant使用的设计标准为375 但是市场现在的主流设置尺寸是750
                    return file.indexOf('vant') !== -1 ? 37.5 : 75;
                },
                unitPrecision: 5, // 保留rem小数点多少位
                propList: ['*'], // 需要做转化处理的属性,如`hight`、`width`、`letter-spacing`等,`*`表示全部
                // propBlackList: ['font-size'], //过滤掉不需要转换的属性
                minPixelValue: 0, //px小于12的不会被转换,默认 0
                selectorBlackList: [] // 忽略转换rem转换,正则匹配项(选择器),如:过滤点含有"el-"或以".ant"开头的选择器
                // exclude: /(node_module)/ //默认false,可以(reg)利用正则表达式排除某些文件夹的方法,例如/(node_module)/ 。如果想把前端UI框架内的px也转换成rem,请把此属性设为默认值
            }
        }
    };
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20

    注意:rootValue ,判断是否是vant的文件,如果是就使用 37.5为根节点字体大小;否则使用75,因为vant使用的设计标准为375,但是市场现在的主流设置尺寸是750

    1. utils文件夹下,新建一个rem.js
    function setRem() {
        // 配置宽度为750px时,1rem的值为:75px;
        const screenWidth = 750;
        const scale = screenWidth / 75;
        const htmlWidth = document.documentElement.clientWidth || document.body.clientWidth;
        // 得到html的Dom元素
        const htmlDom = document.getElementsByTagName('html')[0];
        // 设置根元素字体大小
        htmlDom.style.fontSize = htmlWidth / scale + 'px';
    }
    // 初始化
    setRem();
    // 改变窗口大小时重新设置 rem
    window.onresize = function () {
        setRem();
    };
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17

    4.main.js引入rem.js文件

    import '@/utils/rem.js'
    
    • 1

    5、但是postcss-px2rem插件并没有处理内联样式的功能,于是我们便需要对之自行处理。
    1) 在src/utils/index.js下

    export const px2rem = (px) => {
        if (/%/gi.test(px)) {
            // 有百分号%,特殊处理,表述pc是一个有百分号的数,比如:90%
            return px;
        } else {
            return parseFloat(px) / 75 + 'rem'; // 这里的75,和postcss.config.js里的rootValue值对应
        }
    };
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8

    2)然后在main.js

    import { px2rem } from '@/utils';
    Vue.prototype.$px2rem = px2rem;
    
    • 1
    • 2

    3) 使用

    <div :style="{ 'font-size': $px2rem('16px') }">测试</div>
    
    • 1
  • 相关阅读:
    MyBatis的使用
    Python7-使用pickle模块将Python对象序列化
    Arthas的安装使用笔记
    ​快解析内网穿透帮助企业快速实现协同办公​​
    golang线程池ants-四种使用方法
    向世界展示“中国品牌”实力,中海达参展INTERGEO
    大二Web课程设计——家乡主题网页设计(web前端网页制作课作业) 四川旅游网页设计制作
    JVS-rules规则引擎,解决大数据风控的自动化决策利器
    软件测试面试题之自动化测试题合集(金九银十必备)
    神经网络权值是什么意思,神经网络权重取值范围
  • 原文地址:https://blog.csdn.net/weixin_43422861/article/details/133037516