colorizejs

1.1.1 • Public • Published

DevOps By Rultor.com

Build Status PDD status License NPM version

It's a simple jQuery plugin to colorize data elements according to its value:

$('#foo').colorizejs({ 500: 'green', 0: 'red' });

If the value of #foo is larger than 500, its color will be set to green, if larger than zero, it will be set to red, otherwise it will not be touched.

You can also use classes instead of colors, but prepending them with a dot:

$('#foo').colorizejs({ 500: '.green', 0: '.red' });

The easiest way is to just include it in your HTML from the RawGit CDN:

<!DOCTYPE html>
<html>
  <head>
    <link rel="stylesheet" href="https://cdn.rawgit.com/yegor256/colorizejs/gh-pages/colorizejs.min.js"/>
  </head>
</html>

Download the latest release.

You can also install it with npm:

$ npm install colorizejs

How to Contribute

First, make sure you can build it locally:

$ npm install gulp
$ gulp

The build has to be clean. If it's not, submit an issue.

Then, make your changes, make sure the build is still clean, and submit a pull request.

Package Sidebar

Install

npm i colorizejs

Weekly Downloads

3

Version

1.1.1

License

MIT

Unpacked Size

203 kB

Total Files

14

Last publish

Collaborators

  • yegor256