colorjoe was somewhat inspired by ColorJack and RightJS Colorpicker. Unlike those it actually scales pretty well. Essentially this means that you'll be able to define its actual dimensions and layout using a bit of CSS. This way the widget fits well responsive layouts.
In addition it's relatively easy to implement missing functionality (RGB fields, whatnot) thanks to the simple API it provides.
Add prepackaged dist/colorjoe.js and css/colorjoe.css to you page or use AMD to load
the dependencies from src/.
var joe = colorjoe(element_id_or_dom_object, initial_color_value);or
var joe = rgbjoe(element_id_or_dom_object, initial_color_value);The returned joe object is an event emitter style object with change and
done events. The change event is fired continuously when selecting and
done is fired when user has stopped selecting.
joe.on("change", function(color) {
console.log("Selecting " + color.toCSS());
});
joe.on("done", function(color) {
console.log("Selected " + color.toCSS());
});The color object is from colorjs.
- Juho Vepsäläinen - Core
- Esa-Matti Suuronen - Grunt support + removeAllListeners
Use grunt command to build prepackaged files in dist/.
colorjoe is available under MIT. See LICENSE for more details.