mirror of https://github.com/layui/layui
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
128 lines
2.9 KiB
128 lines
2.9 KiB
<!DOCTYPE html> |
|
<html> |
|
<head> |
|
<meta charset="utf-8"> |
|
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1"> |
|
<title>颜色选择器 - layui</title> |
|
|
|
<link rel="stylesheet" href="../src/css/layui.css"> |
|
|
|
<style> |
|
body{padding:20px;} |
|
.test-box{margin-bottom: 50px;} |
|
</style> |
|
</head> |
|
<body> |
|
|
|
<div class="layui-container"> |
|
<div class="test-box"> |
|
<div class="layui-inline"> |
|
<input class="layui-input" id="LAY-test1"> |
|
</div> |
|
<div id="test1"></div> |
|
</div> |
|
|
|
<div class="test-box"> |
|
<div id="test2"></div> |
|
</div> |
|
|
|
<div class="test-box"> |
|
<div id="test3"></div> |
|
</div> |
|
|
|
<div class="test-box"> |
|
<div id="test4"></div> |
|
</div> |
|
|
|
<div class="test-box"> |
|
<div id="test5"></div> |
|
</div> |
|
|
|
<div class="test-box"> |
|
<div id="test6"></div> |
|
</div> |
|
|
|
<div class="test-box"> |
|
<div class="test-more" lay-options="{color: '#FF0000'}"></div> |
|
<div class="test-more" lay-options="{color: '#008000'}"></div> |
|
<div class="test-more" lay-options="{color: '#0000FF'}"></div> |
|
</div> |
|
</div> |
|
|
|
<script src="../src/layui.js"></script> |
|
<script> |
|
|
|
layui.use(['colorpicker', 'layer'], function(){ |
|
var colorpicker = layui.colorpicker; |
|
|
|
colorpicker.render({ |
|
elem: '#test1' |
|
//,predefine: true //开启预定义颜色 |
|
//,colors: ['#F00','#0F0','#00F','rgb(255, 69, 0)','rgba(255, 69, 0, 0.5)'] |
|
,change: function(color){ |
|
this.done(color); |
|
} |
|
,done: function(color){ |
|
layui.$('#LAY-test1').val(color); |
|
document.body.style.backgroundColor = color; |
|
} |
|
,cancel: function(color){ |
|
this.done(color); |
|
console.log('cancel', color); |
|
} |
|
,close: function(color){ |
|
console.log('close', color); |
|
} |
|
}); |
|
|
|
colorpicker.render({ |
|
elem: '#test2' |
|
,color: 'rgba(218, 121, 157, 1)' //设置默认色 |
|
,predefine: true |
|
,alpha: true //开启透明度 |
|
,format: 'rgb' |
|
,change: function(color){ |
|
console.log(color) |
|
} |
|
}); |
|
|
|
colorpicker.render({ |
|
elem: '#test3' |
|
,color: '#000' |
|
//,alpha: true |
|
//,format: 'rgb' //设置输入显示格式为rgb |
|
}); |
|
|
|
colorpicker.render({ |
|
elem: '#test4' |
|
,color: '#06eeb8' |
|
,predefine: true //开启预定义色 |
|
,format: 'rgb' |
|
}); |
|
|
|
colorpicker.render({ |
|
elem: '#test5' |
|
,color: '#ffd900' |
|
,predefine: true |
|
,size: 'lg' |
|
}); |
|
|
|
colorpicker.render({ |
|
elem: '#test6' |
|
,color: '#F00' |
|
,predefine: true |
|
,colors: ['#F00','#0F0','#00F','rgb(255, 69, 0)','rgba(255, 69, 0, 0.5)'] |
|
,size: 'xs' |
|
}); |
|
|
|
// 同时绑定多个 |
|
colorpicker.render({ |
|
elem: '.test-more', |
|
done: function(color){ |
|
console.log(this.elem, color); |
|
} |
|
}); |
|
}) |
|
</script> |
|
</body> |
|
</html> |