soda-x / postcss-plugin-px2rem

postcss plugin px2rem
193 stars 29 forks source link

support ignore specified prop and value change from px to rem #1

Open soda-x opened 8 years ago

soda-x commented 8 years ago

support ignore specified prop and value change from px to rem

{
  rootValue: 100,
  unitPrecision: 5,
  propWhiteList: [],
  propBlackList: [],
  selectorBlackList: [],
  ignoreIdentifier: false,
+ ignorePropAndValue: [{
     border: ['1px' ]
  } , {
    margin: ['1px', '5px']
  }],
  replace: true,
  mediaQuery: false,
  minPixelValue: 0
}
ziluo commented 8 years ago

增强replace函数,把prop,selector,文件名和文件路径作为参数传递进去,理论上就可以覆盖100%场景了

soda-x commented 8 years ago

目前配置的 replace 是一种 fallback 机制

另外你说的增强 replace 函数,如果指的是那个正则表达式,那基本解决不了你的需求. 基于性能考虑,正则阶段是获取到 value 而不是表达式即 decl 阶段。

所以最好的解决方式是我上面那种方案。

l-zhi commented 8 years ago

How to use it with "@keyframes"

soda-x commented 8 years ago

enable mediaQuery

SaltedFishYuto commented 6 years ago

作者大大,最新版本怎么没这个属性