详解react内联样式使用webpack将px转rem
程序员文章站
2022-04-10 18:45:25
背景
在开发react项目时,很多时候我们把style写在css、less、scss里,经过像postcss这样的配置处理,但有没有这样一种需求呢,像有些样式我们直接...
背景
在开发react项目时,很多时候我们把style写在css、less、scss里,经过像postcss这样的配置处理,但有没有这样一种需求呢,像有些样式我们直接写在xml标签上style里,然后也能进行处理,如px2rem能将px转rem,是否在style上写也能实现。
思路
我们在webpack,/.(js|jsx)?$/这样babel-loader之前(webpack从右往左)加一个loader把需要转变的px进行替换,不就好了,先找找有没有这样的loader,我找了下没找到,只能自己写一个了
代码
const loaderutils = require('loader-utils'); // 默认参数 const defaultopts = { remunit: 100, // rem unit value (default: 100) remfixed: 2, // rem value precision (default: 2) }; // 获取webpack配置好的参数 const opts = loaderutils.getoptions(this); // 将参数组合 const config = object.assign({}, defaultopts, opts); const zpxregexp = /\b(\d+(\.\d+)?)supx\b/; module.exports = function (source) { let pxglobalregexp = new regexp(zpxregexp.source, 'g'); if (this.cacheable) { this.cacheable(); } // 先test下有没有符合的如果有再进行替换 if (pxglobalregexp.test(source)) { return source.replace(pxglobalregexp, ($0, $1) => { let val = $1 / config.remunit; // 精确到几位 val = parsefloat(val.tofixed(config.remfixed)); return val === 0 ? val : val + 'rem'; }); } else { return source; } };
用法
{ loader: path.join(rootpath, 'loaders/jsxpx2remloader'), options: { remunit: 100, remfixed: 3 } }
源代码
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。