ps样式的jQuery颜色选择插件

当前位置:主页 > jQuery库 > 颜色选择器 > ps样式的jQuery颜色选择插件
ps样式的jQuery颜色选择插件
分享:

    插件介绍

    这是一款外观样式和photoshop上的颜色选择器一样的jQuery颜色选择器插件。它提供了多种调用颜色选择器的方法,灵活、小巧、方便。

    浏览器兼容性

    浏览器兼容性
    时间:11-08
    阅读:

简要教程

这是一款仿photoshop的颜色拾取器的jQuery颜色选择器插件。

使用方法

首先要引入必要的文件:

<link rel="stylesheet" media="screen" type="text/css" href="css/colorpicker.css" />
<script type="text/javascript" src="js/colorpicker.js"></script>
                

调用颜色选择器插件。

$('input').ColorPicker(options);
                

可选参数:

  • color:string 或 hash。The default color. String for hex color or hash for RGB and HSB ({r:255, r:0, b:0}) . Default: 'ff0000'。
  • flat:boolean。Whatever if the color picker is appended to the element or triggered by an event. Default false。
  • livePreview:boolean。Whatever if the color values are filled in the fields while changing values on selector or a field. If false it may improve speed. Default true。
  • onShow:function。颜色选择器显示时的回调函数。
  • onBeforeShow:function。颜色选择器显示前的回调函数。
  • onHide:function。颜色选择器被隐藏时的回调函数。
  • onChange:function。选择不同颜色时的回调函数。
  • onSubmit:function。选定颜色后点击提交按钮的回调函数。

设置颜色:如果你想设置一个新的颜色。

$('input').ColorPickerSetColor(color);