Вход Регистрация
Файл: colorpicker/docs/docs.js
Строк: 174
<?php
function updateBorders(color) {
    $(
"#docs-content").css("border-color"color.toHexString());
}

$(function() {

$(
"#full").spectrum({
    
color"#ECC",
    
showInputtrue,
    
className"full-spectrum",
    
showInitialtrue,
    
showPalettetrue,
    
showSelectionPalettetrue,
    
showAlphatrue,
    
maxPaletteSize10,
    
preferredFormat"hex",
    
localStorageKey"spectrum.demo",
    
move: function (color) {
        
updateBorders(color);
    },
    
show: function () {

    },
    
beforeShow: function () {

    },
    
hide: function (color) {
        
updateBorders(color);
    },

    
palette: [
        [
"rgb(0, 0, 0)""rgb(67, 67, 67)""rgb(102, 102, 102)"/*"rgb(153, 153, 153)","rgb(183, 183, 183)",*/
        
"rgb(204, 204, 204)""rgb(217, 217, 217)"/*"rgb(239, 239, 239)", "rgb(243, 243, 243)",*/ "rgb(255, 255, 255)"],
        [
"rgb(152, 0, 0)""rgb(255, 0, 0)""rgb(255, 153, 0)""rgb(255, 255, 0)""rgb(0, 255, 0)",
        
"rgb(0, 255, 255)""rgb(74, 134, 232)""rgb(0, 0, 255)""rgb(153, 0, 255)""rgb(255, 0, 255)"],
        [
"rgb(230, 184, 175)""rgb(244, 204, 204)""rgb(252, 229, 205)""rgb(255, 242, 204)""rgb(217, 234, 211)",
        
"rgb(208, 224, 227)""rgb(201, 218, 248)""rgb(207, 226, 243)""rgb(217, 210, 233)""rgb(234, 209, 220)",
        
"rgb(221, 126, 107)""rgb(234, 153, 153)""rgb(249, 203, 156)""rgb(255, 229, 153)""rgb(182, 215, 168)",
        
"rgb(162, 196, 201)""rgb(164, 194, 244)""rgb(159, 197, 232)""rgb(180, 167, 214)""rgb(213, 166, 189)",
        
"rgb(204, 65, 37)""rgb(224, 102, 102)""rgb(246, 178, 107)""rgb(255, 217, 102)""rgb(147, 196, 125)",
        
"rgb(118, 165, 175)""rgb(109, 158, 235)""rgb(111, 168, 220)""rgb(142, 124, 195)""rgb(194, 123, 160)",
        
"rgb(166, 28, 0)""rgb(204, 0, 0)""rgb(230, 145, 56)""rgb(241, 194, 50)""rgb(106, 168, 79)",
        
"rgb(69, 129, 142)""rgb(60, 120, 216)""rgb(61, 133, 198)""rgb(103, 78, 167)""rgb(166, 77, 121)",
        
/*"rgb(133, 32, 12)", "rgb(153, 0, 0)", "rgb(180, 95, 6)", "rgb(191, 144, 0)", "rgb(56, 118, 29)",
        "rgb(19, 79, 92)", "rgb(17, 85, 204)", "rgb(11, 83, 148)", "rgb(53, 28, 117)", "rgb(116, 27, 71)",*/
        
"rgb(91, 15, 0)""rgb(102, 0, 0)""rgb(120, 63, 4)""rgb(127, 96, 0)""rgb(39, 78, 19)",
        
"rgb(12, 52, 61)""rgb(28, 69, 135)""rgb(7, 55, 99)""rgb(32, 18, 77)""rgb(76, 17, 48)"]
    ]
});

$(
"#hideButtons").spectrum({
    
showButtonsfalse,
    
changeupdateBorders
});


var 
isDisabled true;
$(
"#toggle-disabled").click(function() {
    if (
isDisabled) {
        $(
"#disabled").spectrum("enable");
    }
    else {
        $(
"#disabled").spectrum("disable");
    }
    
isDisabled = !isDisabled;
    return 
false;
});

$(
"input:disabled").spectrum({

});
$(
"#disabled").spectrum({
    
disabledtrue
});

$(
"#pick1").spectrum({
    
flattrue,
    
change: function(color) {
        var 
hsv color.toHsv();
        var 
rgb color.toRgbString();
        var 
hex color.toHexString();
        
//console.log("callback",color.toHslString(), color.toHsl().h, color.toHsl().s, color.toHsl().l)
        
$("#docs-content").css({
            
'background-color'color.toRgbString()
        }).
toggleClass("dark"hsv..5);
        $(
"#switch-current-rgb").text(rgb);
        $(
"#switch-current-hex").text(hex);
    },
    
show: function() {

    },
    
hide: function() {

    },
    
showInputtrue,
    
showPalettetrue,
    
palette: ['white''#306''#c5c88d''#ac5c5c''#344660']
});

$(
"#collapsed").spectrum({
    
color"#dd3333",
    
changeupdateBorders,
    
show: function() {

    },
    
hide: function() {

    }
});

$(
"#flat").spectrum({
    
flattrue,
    
showInputtrue,
    
moveupdateBorders
});

$(
"#showInput").spectrum({
    
color"#dd33dd",
    
showInputtrue,
    
changeupdateBorders,
    
show: function() {

    },
    
hide: function() {

    }
});

$(
"#showAlpha").spectrum({
    
color"rgba(255, 128, 0, .5)",
    
showAlphatrue,
    
changeupdateBorders
});

$(
"#showAlphaWithInput").spectrum({
    
color"rgba(255, 128, 0, .5)",
    
showAlphatrue,
    
showInputtrue,
    
showPalettetrue,
    
palette: [
        [
"rgba(255, 128, 0, .9)""rgba(255, 128, 0, .5)"],
        [
"red""green""blue"],
        [
"hsla(25, 50, 75, .5)""rgba(100, .5, .5, .8)"]
    ],
    
changeupdateBorders
});

$(
"#openWithLink").spectrum({
    
color"#dd3333",
    
changeupdateBorders,
    
show: function() {

    },
    
hide: function() {

    }
});

$(
"#className").spectrum({
    
className'awesome'
});

$(
"#showPalette").spectrum({
    
showPalettetrue,
    
palette: [
        [
'black''white''blanchedalmond'],
        [
'rgb(255, 128, 0);''hsv 100 70 50''lightyellow']
    ],
    
changeupdateBorders
});

var 
textPalette = ["rgb(255, 255, 255)""rgb(204, 204, 204)""rgb(192, 192, 192)""rgb(153, 153, 153)""rgb(102, 102, 102)""rgb(51, 51, 51)""rgb(0, 0, 0)""rgb(255, 204, 204)""rgb(255, 102, 102)""rgb(255, 0, 0)""rgb(204, 0, 0)""rgb(153, 0, 0)""rgb(102, 0, 0)""rgb(51, 0, 0)""rgb(255, 204, 153)""rgb(255, 153, 102)""rgb(255, 153, 0)""rgb(255, 102, 0)""rgb(204, 102, 0)""rgb(153, 51, 0)""rgb(102, 51, 0)""rgb(255, 255, 153)""rgb(255, 255, 102)""rgb(255, 204, 102)""rgb(255, 204, 51)""rgb(204, 153, 51)""rgb(153, 102, 51)""rgb(102, 51, 51)""rgb(255, 255, 204)""rgb(255, 255, 51)""rgb(255, 255, 0)""rgb(255, 204, 0)""rgb(153, 153, 0)""rgb(102, 102, 0)""rgb(51, 51, 0)""rgb(153, 255, 153)""rgb(102, 255, 153)""rgb(51, 255, 51)""rgb(51, 204, 0)""rgb(0, 153, 0)""rgb(0, 102, 0)""rgb(0, 51, 0)""rgb(153, 255, 255)""rgb(51, 255, 255)""rgb(102, 204, 204)""rgb(0, 204, 204)""rgb(51, 153, 153)""rgb(51, 102, 102)""rgb(0, 51, 51)""rgb(204, 255, 255)""rgb(102, 255, 255)""rgb(51, 204, 255)""rgb(51, 102, 255)""rgb(51, 51, 255)""rgb(0, 0, 153)""rgb(0, 0, 102)""rgb(204, 204, 255)""rgb(153, 153, 255)""rgb(102, 102, 204)""rgb(102, 51, 255)""rgb(102, 0, 204)""rgb(51, 51, 153)""rgb(51, 0, 153)""rgb(255, 204, 255)""rgb(255, 153, 255)""rgb(204, 102, 204)""rgb(204, 51, 204)""rgb(153, 51, 153)""rgb(102, 51, 102)""rgb(51, 0, 51)"];

$(
"#showPaletteOnly").spectrum({
    
color'blanchedalmond',
    
showPaletteOnlytrue,
    
showPalette:true,
    
palette: [
        [
'black''white''blanchedalmond',
        
'rgb(255, 128, 0);''hsv 100 70 50'],
        [
'red''yellow''green''blue''violet']
    ]
});

$(
"#clickoutFiresChange").spectrum({
    
clickoutFiresChangetrue,
    
changeupdateBorders
});

$(
"#clickoutDoesntFireChange").spectrum({
    
changeupdateBorders
});

$(
"#showInitial").spectrum({
    
showInitialtrue
});

$(
"#showInputAndInitial").spectrum({
    
showInitialtrue,
    
showInputtrue
});


$(
"#changeOnMove").spectrum({
    
move: function(c) {
        var 
label = $("#changeOnMoveLabel");
        
label.text("Move called: " c.toHexString());
    }
});
$(
"#changeOnMoveNo").spectrum({
    
change: function(c) {
        var 
label = $("#changeOnMoveNoLabel");
        
label.text("Change called: " c.toHexString());
    }
});

$(
".basic").spectrum({ changeupdateBorders });
$(
".override").spectrum({
    
color"yellow",
    
changeupdateBorders
});

$(
"#beforeShow").spectrum({
    
beforeShow: function() {
        return 
false;
    }
});


$(
"#custom").spectrum({
    
color"#f00"
});

$(
"#buttonText").spectrum({
    
chooseText"Alright",
    
cancelText"No way"
});


$(
"#showSelectionPalette").spectrum({
    
showPalettetrue,
    
showSelectionPalettetrue// true by default
    
palette: [ ]
});
$(
"#showSelectionPaletteStorage").spectrum({
    
showPalettetrue,
    
localStorageKey"spectrum.homepage"// Any picker with the same string will share selection
    
showSelectionPalettetrue,
    
palette: [ ]
});


$(
"#preferredHex").spectrum({
    
preferredFormat"hex",
    
showInputtrue
});
$(
"#preferredHex6").spectrum({
    
preferredFormat"hex6",
    
showInputtrue
});
$(
"#preferredHsl").spectrum({
    
preferredFormat"hsl",
    
showInputtrue
});
$(
"#preferredRgb").spectrum({
    
preferredFormat"rgb",
    
showInputtrue
});
$(
"#preferredName").spectrum({
    
preferredFormat"name",
    
showInputtrue
});
$(
"#preferredNone").spectrum({
    
showInputtrue
});

$(
"#triggerSet").spectrum({
    
changeupdateBorders
});

// Show the original input to demonstrate the value changing when calling `set`
$("#triggerSet").show();

$(
"#btnEnterAColor").click(function() {
    $(
"#triggerSet").spectrum("set", $("#enterAColor").val());
});


$(
'#toc').toc({
    
'selectors''h2,h3'//elements to use as headings
    
'container''#docs'//element to find all selectors in
    
'smoothScrolling'true//enable or disable smooth scrolling on click
    
'prefix''toc'//prefix for anchor tags and class names
    
'highlightOnScroll'true//add class to heading that is currently in focus
    
'highlightOffset'100//offset to trigger the next headline
    
'anchorName': function(iheadingprefix) { //custom function for anchor name
        
return prefix+i;
    }
});

prettyPrint();


});
?>
Онлайн: 1
Реклама