MooColorPicker 1.3

A MooTools plugin for choosing a color from a list of square boxes.



Details

Author
Lorenzo Stanco
Current version
1.3
GitHub
lorenzos/MooColorPicker
Downloads
12732
Category
Interface
Tags
Report
GitHub Issues

Releases


Dependencies

  • _self_/_current_: core/1.2.1: '*'

How to use

JS sample:


// Create the color picker with some colors
var cp = new MooColorPicker($('cp'), {
    colors: [
        "#001B2E", "#479096", "#4A7390",
        "#036564", "#4F2634", "#B6BFAD", "#2D0D10"],
    defaultColor: 3 // Select #4A7390
});

// Display current color
$('current_color').set('html', 'Current color is: ' + cp.getCurrentColor());
cp.addEvent('change', function(col, box) {
    $('current_color').set('html', 'Current color is: ' + col);
});

HTML code:


<div id="cp">Color picker container</div>
<div id="current_color">No color selected</div>

CSS rules:


div.moocolorcheckbox {
    width: 24px;
    height: 24px;
    margin: 4px 2px 4px 0px;
    border: 1px solid white;
    border-radius: 4px;
    -moz-border-radius: 4px;
    -moz-box-shadow: 1px 1px 5px #cccccc;
    overflow: hidden; }

div.moocolorcheckbox_selected {
    width: 32px;
    height: 32px;
    margin: 0px 2px 0px 0px;
}

Docs

Implements: Options, Events

Syntax:


var cp = new MooColorPicker(container, options);
  • container: The <div> container (will be empty).

Options (object, optional): Initial options for the class. Options are:

  • colors: An array of strings, like ["#0123456", "#789ABC"].
  • defaultColor: Index of preselected color (default -1, none).
  • className: CSS class for single color <div> boxes (default 'moocolorcheckbox').
  • selectedClassName: CSS class for selected color <div> box (default 'moocolorcheckbox_selected').

Events:

  • change(color, item): Fires when selected color is changed. Color is selected color, item is the selected color <div> box.
  • mouseenter(div), mouseleave(div): Fires when mouse over or leave a color <div> box.

Methods:

  • addColor(color): Adds a color to the list.
  • removeColor(color): Removes a color from the list.
  • selectColor(color): Select a color if it is in the list.
  • getCurrentColor(): Returs current color as "#HHHHHH" string.
  • getContainer(): Return container <div>.

Discuss

A note on comments here: These comments are moderated. No comments will show up until they are approved. Comments that are not productive (i.e. inflammatory, rude, etc) will not be approved.

Found a bug in this plugin? Please report it this repository's Github Issues.

blog comments powered by Disqus