You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
peterd 0d55e45be6 Minor updates / color2text method
- fixed positioning (appendTo different then document.body)
- added method color2text()
- minor optimizations
8 years ago
..
README.md Update README.md 10 years ago
_temp.js Minor updates / color2text method 8 years ago
index.html Minor updates / color2text method 8 years ago
jsColor.css Initial commit 10 years ago
jsColor.js Minor updates / color2text method 8 years ago
jsColorPicker.min.js Minor updates / color2text method 8 years ago

README.md

javaScript implementation (IE8+ or with querySelectorAll polyfill)

Some description follows soon...

##Demo See demo at dematte.at/cpn/javaScript_implementation

##Usage

    jsColorPicker('input.color');
    // description of option will follow
    jsColorPicker('input.color', {
        klass: window.ColorPicker,
        input: elm,
        patch: elm,
        init: function(elm, colors){}, // initialization callback (before colorPicker gets initialized though)
        // animationSpeed: 200, will be supported soon
        // draggable: true,
        multipleInstances: false
        margin: {left: -1, top: 2},
        initStyle: 'display: none',
        mode: 'hsv-h',
        size: 1,
        renderCallback: renderCallback
        // and all other options from color and colorPicker
    });