1200字范文,内容丰富有趣,写作的好帮手!
1200字范文 > vue移动端滴滴cubeui和postcss-pxtorem插件的rem混合使用 不影响UI的px

vue移动端滴滴cubeui和postcss-pxtorem插件的rem混合使用 不影响UI的px

时间:2021-12-10 19:44:52

相关推荐

vue移动端滴滴cubeui和postcss-pxtorem插件的rem混合使用 不影响UI的px

我用的是postcss-post,cube,在node——modules 下找到postcss-pxtorem/indedx.js

‘use strict’;var postcss = require(‘postcss’);var objectAssign = require(‘object-assign’);var pxRegex = require(’./lib/pixel-unit-regex’);var filterPropList = require(’./lib/filter-prop-list’);var defaults = { rootValue: 16, unitPrecision: 5, selectorBlackList: [], propList: [‘font’, ‘font-size’, ‘line-height’, ‘letter-spacing’], replace: true, mediaQuery: false, minPixelValue: 0};var legacyOptions = { ‘root_value’: ‘rootValue’, ‘unit_precision’: ‘unitPrecision’, ‘selector_black_list’: ‘selectorBlackList’, ‘prop_white_list’: ‘propList’, ‘media_query’: ‘mediaQuery’, ‘propWhiteList’: ‘propList’};module.exports = postcss.plugin(‘postcss-pxtorem’, function (options) { convertLegacyOptions(options); var opts = objectAssign({}, defaults, options); var pxReplace = createPxReplace(opts.rootValue, opts.unitPrecision, opts.minPixelValue); var satisfyPropList = createPropListMatcher(opts.propList); return function (css) { css.walkDecls(function (decl) { if (/cube-/g.test(decl.parent.selector)) { if (decl.value.indexOf(‘px’) === -1) return; let vlist = decl.value.split(" ") for(let j = 0; j < vlist.length; j++) { if (vlist[j].indexOf(‘px’) === -1) continue let num = parseInt(vlist[j].match(/\d+px/g)[0].replace(‘px’, ‘’)) * 2 vlist[j] = vlist[j].replace(/\d+px/g, num.toString() + ‘px’) } let v = vlist.join(’ ‘) decl.value = v } }) css.walkDecls(function (decl, i) { // This should be the fastest test and will remove most declarations if (decl.value.indexOf(‘px’) === -1) return; if (!satisfyPropList(decl.prop)) return; if (blacklistedSelector(opts.selectorBlackList, decl.parent.selector)) return; var value = decl.value.replace(pxRegex, pxReplace); // if rem unit already exists, do not add or replace if (declarationExists(decl.parent, decl.prop, value)) return; if (opts.replace) { decl.value = value; } else { decl.parent.insertAfter(i, decl.clone({ value: value })); } }); if (opts.mediaQuery) { css.walkAtRules(‘media’, function (rule) { if (rule.params.indexOf(‘px’) === -1) return; rule.params = rule.params.replace(pxRegex, pxReplace); }); } }; });function convertLegacyOptions(options) { if (typeof options !== ‘object’) return; if ( ( (typeof options[‘prop_white_list’] !== ‘undefined’ && options[‘prop_white_list’].length === 0) || (typeof options.propWhiteList !== ‘undefined’ && options.propWhiteList.length === 0) ) && typeof options.propList === ‘undefined’ ) { options.propList = [’’]; delete options[‘prop_white_list’]; delete options.propWhiteList; } Object.keys(legacyOptions).forEach(function (key) { if (options.hasOwnProperty(key)) { options[legacyOptions[key]] = options[key]; delete options[key]; } }); }function createPxReplace (rootValue, unitPrecision, minPixelValue) { return function (m, $1) { if (!$1) return m; var pixels = parseFloat($1); if (pixels < minPixelValue) return m; var fixedVal = toFixed((pixels / rootValue), unitPrecision); return (fixedVal === 0) ? ‘0’ : fixedVal + ‘rem’; }; }function toFixed(number, precision) { var multiplier = Math.pow(10, precision + 1), wholeNumber = Math.floor(number * multiplier); return Math.round(wholeNumber / 10) * 10 / multiplier; }function declarationExists(decls, prop, value) { return decls.some(function (decl) { return (decl.prop === prop && decl.value === value); }); }function blacklistedSelector(blacklist, selector) { if (typeof selector !== ‘string’) return; return blacklist.some(function (regex) { if (typeof regex === ‘string’) return selector.indexOf(regex) !== -1; return selector.match(regex); }); }function createPropListMatcher(propList) { var hasWild = propList.indexOf(’’) > -1; var matchAll = (hasWild && propList.length === 1); var lists = { exact: filterPropList.exact(propList), contain: filterPropList.contain(propList), startWith: filterPropList.startWith(propList), endWith: filterPropList.endWith(propList), notExact: filterPropList.notExact(propList), notContain: filterPropList.notContain(propList), notStartWith: filterPropList.notStartWith(propList), notEndWith: filterPropList.notEndWith(propList) }; return function (prop) { if (matchAll) return true; return ( ( hasWild || lists.exact.indexOf(prop) > -1 || lists.contain.some(function (m) { return prop.indexOf(m) > -1; }) || lists.startWith.some(function (m) { return prop.indexOf(m) === 0; }) || lists.endWith.some(function (m) { return prop.indexOf(m) === prop.length - m.length; }) ) && !( lists.notExact.indexOf(prop) > -1 || lists.notContain.some(function (m) { return prop.indexOf(m) > -1; }) || lists.notStartWith.some(function (m) { return prop.indexOf(m) === 0; }) || lists.notEndWith.some(function (m) { return prop.indexOf(m) === prop.length - m.length; }) ) ); }; }

复制进去

然后再postcss-pxtorem 的配置 .postcss.js

module.exports = { “plugins”: { “postcss-import”: {}, “postcss-url”: {}, // to edit target browsers: use “browserslist” field in package.json “autoprefixer”: {browsers: [‘defaults’]}, “postcss-pxtorem”: { “rootValue”: 75, “propList”: [’’, '!border’], // 注意:如果有使用第三方UI如VUX,则需要配置下忽略选择器不转换。 // 规则是class中包含的字符串,如vux中所有的class前缀都是weui-。也可以是正则。 “selectorBlackList”: [‘cube-’] } } }

最后一步 在吧

name=“viewport” content=“width=device-width,initial-scale=0.5”>改成0.5 OK 这就不影响开发了

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。