项目原始demo,不改动
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
Questo repository è archiviato. Puoi vedere i file e clonarli, ma non puoi effettuare richieste di pushj o aprire problemi/richieste di pull.
 
 
 
 
xzx 2ec7739298 [Version] V.3.8 4 anni fa
..
dist [Version] V.3.8 4 anni fa
node_modules [Version] V.3.8 4 anni fa
CHANGELOG.md [Version] V.3.8 4 anni fa
LICENSE-MIT [Version] V.3.8 4 anni fa
README.md [Version] V.3.8 4 anni fa
package.json [Version] V.3.8 4 anni fa

README.md

postcss-reduce-transforms Build Status NPM version Dependency Status

Reduce transform functions with PostCSS.

Install

With npm do:

npm install postcss-reduce-transforms --save

Example

This module will reduce transform functions where possible. For more examples, see the tests.

Input

h1 {
    transform: rotate3d(0, 0, 1, 20deg);
}

Output

h1 {
    transform: rotate(20deg);
}

Usage

See the PostCSS documentation for examples for your environment.

Contributing

Pull requests are welcome. If you add functionality, then please add unit tests to cover it.

License

MIT © Ben Briggs