You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

44 lines
723 B

4 years ago
  1. # [postcss][postcss]-normalize-timing-functions
  2. > Normalize timing functions with PostCSS.
  3. ## Install
  4. With [npm](https://npmjs.org/package/postcss-normalize-timing-functions) do:
  5. ```
  6. npm install postcss-normalize-timing-functions --save
  7. ```
  8. ## Example
  9. ### Input
  10. ```css
  11. div {
  12. animate: fade 3s cubic-bezier(0.42, 0, 1, 1)
  13. }
  14. ```
  15. ### Output
  16. ```css
  17. div {
  18. animate: fade 3s ease-in
  19. }
  20. ```
  21. ## Usage
  22. See the [PostCSS documentation](https://github.com/postcss/postcss#usage) for
  23. examples for your environment.
  24. ## Contributors
  25. See [CONTRIBUTORS.md](https://github.com/cssnano/cssnano/blob/master/CONTRIBUTORS.md).
  26. ## License
  27. MIT © [Ben Briggs](http://beneb.info)
  28. [postcss]: https://github.com/postcss/postcss