修复 colorpicker 在设置初始值时,面板中输入框未赋值的问题

pull/1229/head
贤心 2 years ago
parent 4a03a5add1
commit f358962675

@ -359,16 +359,13 @@ layui.define(['jquery', 'lay'], function(exports){
//同步滑块的位置及颜色选择器的选择
that.select(hsb.h, hsb.s, hsb.b);
//如果格式要求为rgb
//格式要求为rgb
if(type === 'torgb'){
elemPickerInput.find('input').val(bgcolor);
}
//如果格式要求为rgba
if(type === 'rgba'){
} else if(type === 'rgba'){ // 若格式要求为 rgba
var rgb = RGBSTo(bgcolor);
//如果开启透明度而没有设置,则给默认值
// 若开启透明度而没有设置,则给默认值
if((bgcolor.match(/[0-9]{1,3}/g) || []).length === 3){
elemPickerInput.find('input').val('rgba('+ rgb.r +', '+ rgb.g +', '+ rgb.b +', 1)');
that.elemPicker.find('.'+ PICKER_ALPHA_SLIDER).css("left", 280);
@ -380,10 +377,11 @@ layui.define(['jquery', 'lay'], function(exports){
// 设置 span 背景色
that.elemPicker.find('.'+ PICKER_ALPHA_BG)[0].style.background = 'linear-gradient(to right, rgba('+ rgb.r +', '+ rgb.g +', '+ rgb.b +', 0), rgb('+ rgb.r +', '+ rgb.g +', '+ rgb.b +'))';
} else {
elemPickerInput.find('input').val('#'+ HSBToHEX(hsb));
}
} else {
//如果没有背景颜色则默认到最初始的状态
//没有背景颜色则默认到最初始的状态
that.select(0,100,100);
elemPickerInput.find('input').val("");
that.elemPicker.find('.'+ PICKER_ALPHA_BG)[0].style.background = '';

Loading…
Cancel
Save