An open API service indexing awesome lists of open source software.

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.

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);
}
});