我只是设置一个带有颜色选择器的网页。我选择了farbtastic。
我的问题是,回调函数不起作用。这是我使用的代码:
$('#colorPicker1').farbtastic('#background-color', function callback() {
/*commands*/
});
当用户选择颜色时,不会调用回调函数。
如何解决这个问题?
答案 0 :(得分:9)
你的帖子很老我知道,但以防万一:
var picker = $.farbtastic('#colorPicker1'); //picker variable
picker.setColor("#b6b6ff"); //set initial color
picker.linkTo(onColorChange); //link to callback
function onColorChange(color) {
dosomeStuff();
}
答案 1 :(得分:8)
farbtastic和你一样打电话
$('selector').farbtastic(...)
等待只有一个可选参数。这可以是DOM节点,jQuery对象,jQuery选择器或函数。所以你应该调用如下所示的函数
$('#colorPicker1').farbtastic(function(color){
// commands
});
如果你想使用#background-color元素,你应该在回调体中使用它
$('#colorPicker1').farbtastic(function(color){
$('#background-color').css({'background-color':color});
// commands
});
答案 2 :(得分:0)
在做了一些搜索之后,在我提出差不多1年后,我认为除了手动编码之外别无选择。
我在破解了一点点farbtastic和colorpicker jquery插件之后来到了这个解决方案:
/*
* ColorPicker.
*/
// Utility functions.
function convertHexToRGB(hex) {
var hex = parseInt(((hex.indexOf('#') > -1) ? hex.substring(1) : hex), 16);
return [hex >> 16,(hex & 0x00FF00) >> 8,(hex & 0x0000FF)];
}
function convert_RGB_to_HSL(rgb) {
var min, max, delta, h, s, l;
var r = rgb[0], g = rgb[1], b = rgb[2];
min = Math.min(r, Math.min(g, b));
max = Math.max(r, Math.max(g, b));
delta = max - min;
l = (min + max) / 2;
s = 0;
if (l > 0 && l < 1) {
s = delta / (l < 0.5 ? (2 * l) : (2 - 2 * l));
}
h = 0;
if (delta > 0) {
if (max == r && max != g) h += (g - b) / delta;
if (max == g && max != b) h += (2 + (b - r) / delta);
if (max == b && max != r) h += (4 + (r - g) / delta);
h /= 6;
}
return [h, s, l];
}
$('#footer-text-color-selector').hide();
$.farbtastic('#footer-text-color-selector')
.setColor('#21759B')
.linkTo(function(color){
$('#footer-text-color').css({
'backgroundColor':color,
'color': (convert_RGB_to_HSL(convertHexToRGB(color))[2] > 125) ? '#000' : '#FFF'
});
$('#footer-preview a').css('color', color);
// XXX Any other things-to-do when the input change.
});
// Hide & Show behaviour.
$('#footer-text-color').click(function() {
$('#footer-text-color-selector').fadeIn();
});
$(document).mousedown(function() {
$('#footer-text-color-selector').each(function() {
var display = $(this).css('display');
if ( display == 'block' )
$(this).fadeOut();
});
});
// Initial behaviour.
$('#footer-text-color').css({
'backgroundColor': $('#footer-text-color').val(),
'color': (convert_RGB_to_HSL(convertHexToRGB($('#footer-text-color').val()))[2] > 125) ? '#000' : '#FFF'
});
$('#footer-preview a').css('color', $('#footer-text-color').val());