ColorPicker
Component that used to select and adjust color values
Documentation
- API : https://nhnent.github.io/tui.color-picker/latest
- Tutorial : https://github.com/nhnent/tui.color-picker/wiki
- Example : https://nhnent.github.io/tui.color-picker/latest/tutorial-example01-basic.html
Dependency
- tui-code-snippet >=1.2.5
Tested Browsers
PC
- IE8~11
- Edge
- Chrome
- Firefox
- Safari
Usage
npm
Use Install the latest version using npm
command:
$ npm install tui-color-picker --save
or want to install the each version:
$ npm install tui-color-picker@<version> --save
To access as module format in your code:
var colorPicker = require('tui-color-picker');
var instance = colorPicker.create({
container: document.getElementById('color-picker')
});
bower
Use Install the latest version using bower
command:
$ bower install tui-color-picker
or want to install the each version:
$ bower install tui-color-picker#<tag>
To access as namespace format in your code:
var instance = tui.colorPicker.create({
container: document.getElementById('color-picker')
});