# postcss-will-change

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

Latest version **4.0.1** (published 2020-09-27) · MIT license · 0 weekly downloads

## Install

```sh
npm install postcss-will-change
pnpm add postcss-will-change
yarn add postcss-will-change
bun add postcss-will-change
```

## Health

**Score 25/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned.

## Facts

| | |
|---|---|
| Version | 4.0.1 |
| Published | 2020-09-27 |
| First published | 2015-02-19 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Node | >=10.0 |
| Dependencies | 0 |
| Unpacked size | 4.2 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 51 |
| Author | Andrey Sitnik |
| Maintainers | ai |
| Keywords | postcss, css, postcss-plugin, will-change, fallback |

## Links

- npm: https://www.npmjs.com/package/postcss-will-change
- Repository: https://github.com/postcss/postcss-will-change
- Homepage: https://github.com/postcss/postcss-will-change#readme
- Issues: https://github.com/postcss/postcss-will-change/issues
- Funding: https://opencollective.com/postcss/
- npm.io page: https://npm.io/package/postcss-will-change

## Alternatives

- [style-dictionary](https://npm.io/package/style-dictionary.md) — 2.0M weekly downloads
- [postcss-merge-idents](https://npm.io/package/postcss-merge-idents.md) — 1.7M weekly downloads
- [@fontsource/noto-sans](https://npm.io/package/@fontsource/noto-sans.md) — 93.0K weekly downloads
- [uglifycss](https://npm.io/package/uglifycss.md) — 71.6K weekly downloads
- [mat4-interpolate](https://npm.io/package/mat4-interpolate.md) — 23.3K weekly downloads

## Recent versions

- 4.0.1 (latest) — 2020-09-27
- 4.0.0 — 2020-09-15
- 3.0.0 — 2018-09-07
- 2.0.0 — 2017-05-08
- 1.1.0 — 2016-02-17
- 1.0.0 — 2015-08-23
- 0.2.0 — 2015-05-05
- 0.1.0 — 2015-02-19

## README

# PostCSS Will Change

<img align="right" width="135" height="95"
     title="Philosopher’s stone, logo of PostCSS"
     src="https://postcss.org/logo-leftp.svg">

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

This plugin uses `backface-visibility` to force the browser to create
a new layer, without overriding existing `backface-visibility` properties.
This 3D CSS hack is commonly done with `transform: translateZ(0)`,
but `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`.

[Autoprefixer]: https://github.com/postcss/autoprefixer
[will-change]:  https://dev.opera.com/articles/css-will-change-property/
[PostCSS]:      https://github.com/postcss/postcss

```css
.foo {
  will-change: transform;
}
```

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

<a href="https://evilmartians.com/?utm_source=postcss-will-change">
  <img src="https://evilmartians.com/badges/sponsored-by-evil-martians.svg"
       alt="Sponsored by Evil Martians" width="236" height="54">
</a>


## Usage

**Step 1:** Install plugin:

```sh
npm install --save-dev postcss postcss-will-change
```

**Step 2:** Check you project for existed PostCSS config: `postcss.config.js`
in the project root, `"postcss"` section in `package.json`
or `postcss` in bundle config.

If you do not use PostCSS, add it according to [official docs]
and set this plugin in settings.

**Step 3:** Add the plugin to plugins list:

```diff
module.exports = {
  plugins: [
+   require('postcss-will-change'),
    require('autoprefixer')
  ]
}
```

[official docs]: https://github.com/postcss/postcss#usage

---
_Source: https://npm.io/package/postcss-will-change · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
