web 3d图形渲染器
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.

39 lines
1.3 KiB

  1. # `CSS.escape` polyfill [![Build status](https://travis-ci.org/mathiasbynens/CSS.escape.svg?branch=master)](https://travis-ci.org/mathiasbynens/CSS.escape) [![Code coverage status](http://img.shields.io/coveralls/mathiasbynens/CSS.escape/master.svg)](https://coveralls.io/r/mathiasbynens/CSS.escape)
  2. A robust polyfill for [the `CSS.escape` utility method as defined in CSSOM](https://drafts.csswg.org/cssom/#the-css.escape%28%29-method).
  3. For a more powerful alternative, consider using [cssesc](https://mths.be/cssesc), which automatically takes care of excessive whitespace, and has many options to customize the output.
  4. ## Installation
  5. In a browser:
  6. ```html
  7. <script src="css.escape.js"></script>
  8. ```
  9. Via [npm](https://www.npmjs.com/):
  10. ```bash
  11. npm install css.escape
  12. ```
  13. Then, in [Node.js](https://nodejs.org/):
  14. ```js
  15. require('css.escape');
  16. // On Windows and on Mac systems with default settings, case doesn’t matter,
  17. // which allows you to do this instead:
  18. require('CSS.escape');
  19. ```
  20. ## Author
  21. | [![twitter/mathias](https://gravatar.com/avatar/24e08a9ea84deb17ae121074d0f17125?s=70)](https://twitter.com/mathias "Follow @mathias on Twitter") |
  22. |---|
  23. | [Mathias Bynens](https://mathiasbynens.be/) |
  24. ## License
  25. This polyfill is available under the [MIT](https://mths.be/mit) license.