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 
PostCSS plugin to insert 3D hack before will-change property.
This plugin uses backface-visibility
to force the browser to create a new layer.
This is commonly done with transform: translateZ(0)
and transform: translate3d(0, 0, 0)
.
backface-visibility
is used here to avoid overriding the more popular transform property.
These hacks are required for browsers that do not support will-change
.
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.