forked from fanaiai/xncolorpicker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
298 lines (274 loc) · 9.09 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<!-- <link rel="stylesheet" href="fcolorpicker.css">-->
<style>
body{
background: #eee;
}
#colorpicker{
/*position: fixed;*/
/*right: 0;*/
/*margin-top: 100px;*/
border: 1px solid #fff;
display: inline-block;
}
</style>
</head>
<body>
<div>
<p>全功能 <a id="destroy">销毁</a> <a id="setcolor">设置颜色</a> <a id="getcolor">获取当前颜色</a></p>
<div id="colorpicker"></div>
</div>
<div>
<p>不显示输入框-2021/03/16 v1.2.2</p>
<div id="noinputter"></div>
</div>
<div>
<p>不显示按钮-2021/03/16 v1.2.2</p>
<div id="nobtn"></div>
</div>
<div>
<p>只显示预置颜色-2021/03/16 v1.2.2</p>
<div id="justpre"></div>
</div>
<div>
<p>不显示调色盘</p>
<div id="nopallete"></div>
</div>
<div>
<p>不显示历史</p>
<div id="nohistory"></div>
</div>
<div>
<p>不显示预制颜色</p>
<div id="nopre"></div>
</div>
<div>
<p>不可切换颜色类型</p>
<div id="notype"></div>
</div>
</body>
<!--<script src="./dist/xncolorpicker.min.js"></script>-->
<script crossorigin="anonymous" integrity="sha512-894YE6QWD5I59HgZOGReFYm4dnWc1Qt5NtvYSaNcOP+u1T9qYdvdihz0PPSiiqn/+/3e7Jo4EaG7TubfWGUrMQ==" src="https://lib.baomitu.com/jquery/3.6.0/jquery.min.js"></script>
<script>
var xncolorpicker = new XNColorPicker({
color: "linear-gradient(0.0deg,hsla(279,63%,58%,1) 0.0,hsla(198,83%,53%,1) 100.0%)",
selector: "#colorpicker",
showprecolor: true,//显示预制颜色
prevcolors: null,//预制颜色,不设置则默认
showhistorycolor: true,//显示历史
historycolornum: 16,//历史条数
format: 'hsla',//rgba hex hsla,初始颜色类型
showPalette:true,//显示色盘
show:false, //初始化显示
lang:'cn',// cn 、en
colorTypeOption:'single,linear-gradient,radial-gradient',
canMove:false,//选择器位置是否可以拖拽
alwaysShow:false,
autoConfirm:true,
hideInputer:false,
hideCancelButton:false,
hideConfirmButton:false,
onError: function (e) {
},
onCancel:function(color){
console.log("cancel",color)
},
onChange:function(color){
console.log("change",color)
},
onConfirm:function(color){
console.log("confirm",color)
// xncolorpicker.$getCurColor();
}
})
document.querySelector("#destroy").onclick=function(){xncolorpicker.destroy();}
document.querySelector("#setcolor").onclick=function(){xncolorpicker.setColor('#ffff00');}
document.querySelector("#getcolor").onclick=function(){
$("body>div>div").each((i,e)=>{
var color=e.colorpicker.$getCurColor();
console.log(color)
alert(JSON.stringify(color))
})
}
var noinputter = new XNColorPicker({
color: "#008867",
selector: "#noinputter",
showprecolor: true,//显示预制颜色
prevcolors: null,//预制颜色,不设置则默认
historycolornum: 16,//历史条数
format: 'hsla',//rgba hex hsla,初始颜色类型
showPalette:false,//显示色盘
show:false, //初始化显示
lang:'cn',// cn 、en
colorTypeOption:'single,linear-gradient,radial-gradient',//
showhistorycolor: true,//show history colors
hideInputer:true,//hide input field
onError: function (e) {
},
onCancel:function(color){
console.log("cancel",color)
},
onChange:function(color){
console.log("change",color)
},
onConfirm:function(color){
console.log("confirm",color)
}
})
var justpre = new XNColorPicker({
color: "#008867",
selector: "#justpre",
showprecolor: true,//显示预制颜色
prevcolors: null,//预制颜色,不设置则默认
historycolornum: 16,//历史条数
format: 'hsla',//rgba hex hsla,初始颜色类型
showPalette:false,//显示色盘
show:false, //初始化显示
lang:'cn',// cn 、en
colorTypeOption:'single,linear-gradient,radial-gradient',//
showhistorycolor: false,//show history colors
hideInputer:true,//hide input field
hideCancelButton:true,//hide Cancel Button
hideConfirmButton:true,//hide Confirm Button
autoConfirm:true,//If you hide Confirm button,please set autoConfirm to true
onError: function (e) {
},
onCancel:function(color){
console.log("cancel",color)
},
onChange:function(color){
console.log("change",color)
},
onConfirm:function(color){
console.log("confirm",color)
}
})
var nobtn = new XNColorPicker({
color: "#008867",
selector: "#nobtn",
showprecolor: true,//显示预制颜色
prevcolors: null,//预制颜色,不设置则默认
showhistorycolor: true,//显示历史
historycolornum: 16,//历史条数
format: 'hsla',//rgba hex hsla,初始颜色类型
showPalette:false,//显示色盘
show:false, //初始化显示
lang:'cn',// cn 、en
colorTypeOption:'single,linear-gradient,radial-gradient',//
hideCancelButton:true,
hideConfirmButton:true,
autoConfirm:true,//不显示确定按钮时,请设置autoconfirm
onError: function (e) {
},
onCancel:function(color){
console.log("cancel",color)
},
onChange:function(color){
console.log("change",color)
},
onConfirm:function(color){
console.log("confirm",color)
}
})
var nopallete = new XNColorPicker({
color: "#008867",
selector: "#nopallete",
showprecolor: true,//显示预制颜色
prevcolors: null,//预制颜色,不设置则默认
showhistorycolor: true,//显示历史
historycolornum: 16,//历史条数
format: 'hsla',//rgba hex hsla,初始颜色类型
showPalette:false,//显示色盘
show:false, //初始化显示
lang:'cn',// cn 、en
colorTypeOption:'single,linear-gradient,radial-gradient',//
onError: function (e) {
},
onCancel:function(color){
console.log("cancel",color)
},
onChange:function(color){
console.log("change",color)
},
onConfirm:function(color){
console.log("confirm",color)
}
})
var nohistory = new XNColorPicker({
color: "#ca9999",
selector: "#nohistory",
showprecolor: true,//显示预制颜色
prevcolors: null,//预制颜色,不设置则默认
showhistorycolor: false,//显示历史
historycolornum: 16,//历史条数
format: 'hsla',//rgba hex hsla,初始颜色类型
showPalette:true,//显示色盘
show:false, //初始化显示
lang:'cn',// cn 、en
colorTypeOption:'single,linear-gradient,radial-gradient',//
onError: function (e) {
},
onCancel:function(color){
console.log("cancel",color)
},
onChange:function(color){
console.log("change",color)
},
onConfirm:function(color){
console.log("confirm",color)
}
})
var nopre = new XNColorPicker({
color: "#ff0987",
selector: "#nopre",
showprecolor: false,//显示预制颜色
prevcolors: null,//预制颜色,不设置则默认
showhistorycolor: true,//显示历史
historycolornum: 16,//历史条数
format: 'hsla',//rgba hex hsla,初始颜色类型
showPalette:true,//显示色盘
show:false, //初始化显示
lang:'cn',// cn 、en
colorTypeOption:'single,linear-gradient,radial-gradient',//
onError: function (e) {
},
onCancel:function(color){
console.log("cancel",color)
},
onChange:function(color){
console.log("change",color)
},
onConfirm:function(color){
console.log("confirm",color)
}
})
var notype = new XNColorPicker({
color: "#f21fff",
selector: "#notype",
showprecolor: true,//显示预制颜色
prevcolors: null,//预制颜色,不设置则默认
showhistorycolor: true,//显示历史
historycolornum: 16,//历史条数
format: 'hsla',//rgba hex hsla,初始颜色类型
showPalette:true,//显示色盘
show:false, //初始化显示
lang:'cn',// cn 、en
colorTypeOption:'single',//
onError: function (e) {
},
onCancel:function(color){
console.log("cancel",color)
},
onChange:function(color){
console.log("change",color)
},
onConfirm:function(color){
console.log("confirm",color)
}
})
</script>
</html>