A simple color picker plugin written in pure JavaScript, for modern browsers.
<!DOCTYPE html>
<html dir="ltr">
<head>
<meta charset="utf-8">
<title>Test</title>
<link href="color-picker.min.css" rel="stylesheet">
</head>
<body>
<input type="text">
<script src="color-picker.min.js"></script>
<script>
var picker = new CP(document.querySelector('input[type="text"]'));
picker.on("change", function(color) {
this.target.value = '#' + color;
});
</script>
</body>
</html>
Has support for touch events. Touchy… touchy…
var el = document.querySelector('input[type="color"]');
// show color picker on click (default)
var picker = new CP(el);
// show color picker on hover
var picker = new CP(el, ["mouseover"]);
// disable color picker by default
// to enable it, try `picker.enter()`
var picker = new CP(el, false);
The available hooks:
create
destroy
enter
exit
fit
change
change:h
change:sv
start
start:h
start:sv
drag
drag:h
drag:sv
stop
stop:h
stop:sv
Add a change
hook.
picker.on("change", function(color) {
console.log(color);
});
Add a change
hook with ID of test-id
.
picker.on("change", function(color) {
console.log(color);
}, 'test-id');
Remove all change
hooks.
picker.off("change");
Remove a change
hook with ID of test-id
.
picker.off("change", 'test-id');
Trigger all change
hooks with pre–defined color value as ffa500
.
picker.trigger("change", ['ffa500']);
Trigger a change
hook with ID of test-id
and with pre–defined color value as ffa500
.
picker.trigger("change", ['ffa500'], 'test-id');
var target = picker.target;
var picker = picker.picker;
Get Hidden Color Data on the Target Element
console.log(picker.set());
Set Hidden Color Data on the Target Element
picker.set([0, 1, 1]); // HSV color value, range from `0` to `1` for each
picker.set('rgb(255, 0, 0)'); // as color string
console.log(picker.HSV2RGB([360, 100, 100]));
console.log(picker.HSV2HEX([360, 100, 100]));
console.log(picker.RGB2HSV([255, 255, 255]));
console.log(picker.RGB2HEX([255, 255, 255]));
console.log(picker.HEX2HSV('ffffff'));
console.log(picker.HEX2RGB('ffffff'));
All valid color string input will be converted into array of hue, saturation and value, with a range from 0
to 1
.
console.log(picker.parse('#ffffff'));
console.log(picker.parse('rgb(255, 255, 255)'));
console.log(picker.parse('hsv(140, 20%, 60%)'));
console.log(picker.parse([0, 1, 1])); // no changes
picker.enter(); // show the color picker
picker.exit(); // hide the color picker
if (picker.visible) { … } // color picker is visible
My purpose in making this plugin is to provide a JavaScript color picker solution as simple as possible with the most minimal features without requiring any dependency on JavaScript library such as jQuery or Prototype.
If you want to add new features, you can use the available hooks to make your own improvements without having to touch the plugin core. Here are some examples:
- No Idea?
- Multiple Instances
- Pre–Defined Value
- Pre–Defined Color
- Update Color Picker State on Value Changes
- Convert HEX Color Value
- Add Support for HSL Color Value
- Transparency
- Show and Hide with Buttons
- Show and Hide with Double Click
- Add Close Button
- Static Color Picker
- Replace Text Input with Hidden Input
- HTML5 Color Input
- Create and Destroy Method
- Auto–Positioned to the Reachable Area in the Document
- Color Preview in Color Picker