Socket
Book a DemoInstallSign in
Socket

color-picker

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

color-picker

Simple color picker component

latest
npmnpm
Version
0.0.1
Version published
Weekly downloads
93
27.4%
Maintainers
1
Weekly downloads
 
Created
Source

ColorPicker

Simple color picker component. Chuck it on a page, in a Dialog, in a Popover etc.

js color picker component

Installation

$ component install component/color-picker

Example

var ColorPicker = require('color-picker');

var picker = new ColorPicker;
picker.el.appendTo('body');
picker.on('change', function(color){
  $('.rgb').text(color.toString()).css('background', color);
});

Events

  • change (color) when the color selection changes

API

ColorPicker#size(n)

Define the color picker width / height.

ColorPicker#width(n)

Define the color picker width.

ColorPicker#height(n)

Define the color picker height.

ColorPicker#color()

Get the current selected color object with .r, .g, and .b values. The .toString() method on these color objects is the string representation such as "rgb(255,0,0)".

ColorPicker#color(str)

Set the color value to str.

License

MIT

Keywords

color

FAQs

Package last updated on 11 Sep 2012

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts