Flat and simple color-picker .Flat and simple color-picker library. No dependencies, no jquery.
Dark | Light |
---|---|
![]() |
![]() |
Note: The readme is always up-to-date with the latest commit. See Releases for installation instructions regarding to the latest version.
<link rel="stylesheet" href="dist/color-picker.min.css"/>
<script type="text/javascript" src="dist/color-picker.min.js"></script>
// Simple example, see optional options for more configuration.
const picker = new ColorPickerControl({
container: document.body,
theme: 'dark'
});
You can find more examples here.
Use the on(event, cb)
and off(event, cb)
functions to bind / unbind eventlistener.
Event | Description | Arguments |
---|---|---|
init |
Initialization done - color picker can be used | ColorPickerControlInstance |
open |
Color picker got opened | ColorPickerControlInstance |
change |
Color has changed | HSVaColorObject |
close |
Color picker got closed | ColorPickerControlInstance |
Example:
picker.on('init', (instance) => {
console.log('Event: "init"', instance);
});
picker.on('open', (instance) => {
console.log('Event: "open"', instance);
});
picker.on('change', (color) => {
console.log('Event: "change"', color);
});
picker.on('close', (instance) => {
console.log('Event: "close"', instance);
});
Author: ivanvmat
Demo: https://ivanvmat.github.io/color-picker/
Source Code: https://github.com/ivanvmat/color-picker
JavaScript Shopping Cart - javascript shopping cart tutorial for beginnersBuy me a coffee 🍺 https://www.paypal.com/paypalme/ziddahSource Code: https://bit....
The essential JavaScript concepts that you should understand - For successful developing and to pass a work interview
JavaScript data types are kept easy. While JavaScript data types are mostly similar to other programming languages; some of its data types can be unique. Here, we’ll outline the data types of JavaScript.
Introduction With Basic JavaScript - Unlike most programming languages, the JavaScript language has no concept of input or output. It is designed to run as a scripting language in a host environment, and it is up to the host environment to provide mechanisms for communicating with the outside world.
The main goal of this article is help to readers to understand that how memory management system performs in JavaScript. I will use a shorthand such as GC which means Garbage Collection. When the browsers use Javascript, they need any memory location to store objects, functions, and all other things. Let’s deep in dive that how things going to work in GC.