https://github.com/neonterra/jroot-color-picker
Its a jquery base plugin to pick colors list, you can pick more the 100+ color pallets from the list on the go.
https://github.com/neonterra/jroot-color-picker
color-picker color-picker-panel jquery jquery-library jquery-plugin jquery-ui jqueryui jroot
Last synced: 3 months ago
JSON representation
Its a jquery base plugin to pick colors list, you can pick more the 100+ color pallets from the list on the go.
- Host: GitHub
- URL: https://github.com/neonterra/jroot-color-picker
- Owner: neonterra
- License: gpl-3.0
- Created: 2018-02-24T10:23:18.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-03-06T10:20:37.000Z (over 7 years ago)
- Last Synced: 2025-01-19T07:13:23.356Z (5 months ago)
- Topics: color-picker, color-picker-panel, jquery, jquery-library, jquery-plugin, jquery-ui, jqueryui, jroot
- Homepage:
- Size: 42 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Jroot Color Picker
## Introduction
Its a jquery base plugin to pick colors list, you can pick more the 100+ color pallets from the list on the go.
## Installation
Download or clone the project and integrate the following files
```sh```
Note: Jquery core and Jquery UI is required please use include them before this plugin.[Download Jquery from here](https://code.jquery.com/)
## Code Samples
$(selector).colorpicker({
zIndex: false ,
position: 'middle-right',
change: function (e, color){
console.log(color);
},
over: function (e, color){
console.log(color);
},
pick: function (e, color){
console.log(color);
}
});