JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 13714
  • Score
    100M100P100Q139409F
  • License MIT

PostCSS plugin to insert 3D hack before will-change property

Package Exports

  • postcss-will-change

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (postcss-will-change) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

PostCSS Will Change Build Status

PostCSS plugin to insert 3D hack before will-change property.

This plugin uses backface-visibility to has prevent overriding more popular transform property.

Use this plugin only before Autoprefixer. It will add vendor prefixes to backface-visibility.

.foo {
    will-change: transform;
}
.foo {
    backface-visibility: hidden;
    will-change: transform;
}

Usage

postcss([ require('postcss-will-change') ])

See PostCSS docs for examples for your environment.