-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
443 lines (424 loc) · 24 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
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="Keywords" content="svg, painter, drawing board" />
<meta name="Description" content="This is a svg painter!" />
<meta http-equiv="Cache-control" content="no-cache" />
<meta name="viewport" content="width=device-width,minimum-scale=1.0,maximum-scale=1.0" />
<title>Painter</title>
<link rel="stylesheet" href="style/normalize.css">
<link rel="stylesheet" href="style/base.css">
<link rel="stylesheet" href="style/board.css">
<script>
var _hmt = _hmt || [];
(function() {
var hm = document.createElement("script");
hm.src = "//hm.baidu.com/hm.js?b139c537584c4df94efabd9cbeaa1848";
var s = document.getElementsByTagName("script")[0];
s.parentNode.insertBefore(hm, s);
})();
</script>
</head>
<body>
<a href="https://github.com/wangyuheng/painter" class="github-corner" aria-label="View source on GitHub"><svg width="80" height="80" viewBox="0 0 250 250" style="fill:#70B7FD; color:#fff; position: absolute; top: 0; border: 0; right: 0;" aria-hidden="true"><path d="M0,0 L115,115 L130,115 L142,142 L250,250 L250,0 Z"></path><path d="M128.3,109.0 C113.8,99.7 119.0,89.6 119.0,89.6 C122.0,82.7 120.5,78.6 120.5,78.6 C119.2,72.0 123.4,76.3 123.4,76.3 C127.3,80.9 125.5,87.3 125.5,87.3 C122.9,97.6 130.6,101.9 134.4,103.2" fill="currentColor" style="transform-origin: 130px 106px;" class="octo-arm"></path><path d="M115.0,115.0 C114.9,115.1 118.7,116.5 119.8,115.4 L133.7,101.6 C136.9,99.2 139.9,98.4 142.2,98.6 C133.8,88.0 127.5,74.4 143.8,58.0 C148.5,53.4 154.0,51.2 159.7,51.0 C160.3,49.4 163.2,43.6 171.4,40.1 C171.4,40.1 176.1,42.5 178.8,56.2 C183.1,58.6 187.2,61.8 190.9,65.4 C194.5,69.0 197.7,73.2 200.1,77.6 C213.8,80.2 216.3,84.9 216.3,84.9 C212.7,93.1 206.9,96.0 205.4,96.6 C205.1,102.4 203.0,107.8 198.3,112.5 C181.9,128.9 168.3,122.5 157.7,114.1 C157.9,116.9 156.7,120.9 152.7,124.9 L141.0,136.5 C139.8,137.7 141.6,141.9 141.8,141.8 Z" fill="currentColor" class="octo-body"></path></svg></a><style>.github-corner:hover .octo-arm{animation:octocat-wave 560ms ease-in-out}@keyframes octocat-wave{0%,100%{transform:rotate(0)}20%,60%{transform:rotate(-25deg)}40%,80%{transform:rotate(10deg)}}@media (max-width:500px){.github-corner:hover .octo-arm{animation:none}.github-corner .octo-arm{animation:octocat-wave 560ms ease-in-out}}</style>
<div class="container">
<div class="container-wrap">
<div class="title-bar">
<span class="title"><h1>Painter</h1></span>
</div>
<div class="board">
<div class="main-toolbar">
<div class="board-panel tool">
<div class="board-icon clearfix">
<input type="hidden" id="tool_cancel" />
<ul>
<li id="tool_save"><img src="style/img/icon-1.png" alt="保存图片" title="保存图片 (Ctrl+s)" /></li>
<li id="tool_undo"><img src="style/img/icon-2.png" alt="撤销" title="撤销 (Ctrl+z)" /></li>
<li id="tool_redo"><img src="style/img/icon-3.png" alt="重做" title="重做 (Ctrl+y)" /></li>
<li class="handle_btn" id="tool_delete"><img src="style/img/icon-4.png" alt="删除" title="删除 (Delete)" /></li>
<li class="handle_btn" id="tool_pick"><img src="style/img/icon-18.png" alt="选择" title="选择" /></li>
<li class="handle_btn" title="上传图片 (Ctrl+O)" id="tt">
<img src="style/img/icon-5.png" alt="图片" title="图片" /></li>
<li class="handle_btn" id="tool_pencil"><img src="style/img/icon-6.png" alt="铅笔" title="铅笔" /></li>
<li class="handle_btn" id="tool_fill"><img src="style/img/icon-8.png" alt="喷枪" title="喷枪" /></li>
</ul>
<div class="clear-screen" id="clear_all"><img src="style/img/icon-20.png" alt="清屏" /></div>
</div>
<p class="board-text">工具</p>
</div>
<div class="board-panel shape">
<div class="board-icon clearfix">
<ul class="shape-left">
<li class="handle_btn" id="tool_rect"><img src="style/img/icon-9.png" alt="矩形" title="矩形" /></li>
<li class="handle_btn icon-size-2" id="tool_ellipse"><img src="style/img/icon-10.png" alt="椭圆" title="椭圆" /></li>
<li class="handle_btn" id="tool_circle"><img src="style/img/icon-19.png" alt="圆形" title="圆形" /></li>
<li class="handle_btn" id="tool_line"><img src="style/img/icon-11.png" alt="直线" title="直线" /></li>
<li class="handle_btn" id="tool_polyline"><img src="style/img/icon-12.png" alt="折线" title="折线" /></li>
</ul>
<ul class="shape-right">
<li class="icon-size-3 js-lineStyle">
<img src="style/img/icon-13.png" alt="粗细" title="粗细" />
<dl class="line-style" id="lineSize">
<dd class="h2 active" data-line-size="2">
<div class="line-inner"><span></span></div>
</dd>
<dd class="h3" data-line-size="4">
<div class="line-inner"><span></span></div>
</dd>
<dd class="h4" data-line-size="8">
<div class="line-inner"><span></span></div>
</dd>
<dd class="h5" data-line-size="16">
<div class="line-inner"><span></span></div>
</dd>
</dl>
</li>
</ul>
</div>
<p class="board-text">形状</p>
</div>
<div class="board-panel layer">
<div class="board-icon clearfix">
<ul>
<li id="tool_layer_front"><img src="style/img/icon-14.png" alt="置于顶层" title="置于顶层" /></li>
<li id="tool_layer_back"><img src="style/img/icon-15.png" alt="置于底层" title="置于底层" /></li>
<li id="tool_layer_forward"><img src="style/img/icon-16.png" alt="上移一层" title="上移一层" /></li>
<li id="tool_layer_backward"><img src="style/img/icon-17.png" alt="下移一层" title="下移一层" /></li>
</ul>
</div>
<p class="board-text">图层</p>
</div>
<div class="board-panel color">
<div class="board-icon clearfix">
<ul class="color-left">
<li class="icon-size-2 active" id="font_color">
<div class="color-block"><span></span></div>
<div class="color-text">线条颜色</div>
</li>
<li class="icon-size-2" id="fill_color">
<div class="color-block"><span></span></div>
<div class="color-text">背景颜色</div>
</li>
</ul>
<div class="color-middle" id="colorPalettes"></div>
<ul class="color-right">
<li class="icon-size-4" id="customColor">
<div class="color-edit">
<i></i>
<p>编辑颜色</p>
</div>
</li>
</ul>
</div>
<p class="board-text">颜色</p>
</div>
<div class="board-panel font">
<div class="board-form clearfix">
<div class="form-row">
<span class="text-tool handle_btn" id="tool_text"><img src="style/img/icon-7.png" alt="插入文本" title="插入文本" /></span>
<select class="chosen-select" style="width:110px;" id="fontFamily">
<option value="SimSun" style="font-family:SimSun;" selected="selected">宋体</option>
<option value="SimHei" style="font-family:SimHei;">黑体</option>
<option value="Microsoft YaHei" style="font-family:Microsoft YaHei;">微软雅黑</option>
<option value="NSimSun" style="font-family:Microsoft JhengHei;">微软正黑体</option>
<option value="NSimSun" style="font-family:NSimSun;">新宋体</option>
<option value="PMingLiU" style="font-family:PMingLiU;">新细明体</option>
<option value="MingLiU" style="font-family:MingLiU;">细明体</option>
<option value="DFKai-SB" style="font-family:DFKai-SB;">标楷体</option>
<option value="FangSong" style="font-family:FangSong;">仿宋</option>
<option value="KaiTi" style="font-family:KaiTi;">楷体</option>
<option value="FangSong_GB2312" style="font-family:FangSong_GB2312;">仿宋_GB2312</option>
<option value="KaiTi_GB2312" style="font-family:KaiTi_GB2312;">楷体_GB2312</option>
</select>
</div>
<div class="form-row">
<select class="chosen-select" style="width:60px;" id="fontSize">
<option value="8">8</option>
<option value="9">9</option>
<option value="10">10</option>
<option value="11">11</option>
<option value="12">12</option>
<option value="14" selected="selected">14</option>
<option value="16">16</option>
<option value="18">18</option>
<option value="20">20</option>
<option value="22">22</option>
<option value="24">24</option>
<option value="26">26</option>
<option value="28">28</option>
<option value="36">36</option>
<option value="48">48</option>
<option value="72">72</option>
</select>
<ul class="font-style">
<li class="b font_handle_btn" id="fontWeight"></li>
<li class="i font_handle_btn" id="fontStyle"></li>
<li class="u font_handle_btn" id="fontUnderline"></li>
<li class="abc font_handle_btn" id="fontLineThrough"></li>
</ul>
</div>
</div>
<p class="board-text">字体</p>
</div>
<div class="board-panel size last">
<div class="board-form clearfix">
<div class="form-row">
<div class="canvas-size" id="sizeParamW">
<span class="label">W:</span>
<input type="text" />
</div>
<div class="canvas-size" id="sizeParamH">
<span class="label">H:</span>
<input type="text" />
</div>
<div class="canvas-size" id="sizeParamR">
<span class="label">R:</span>
<input type="text" />
</div>
<div class="canvas-size" id="sizeParamA">
<span class="label">a:</span>
<input type="text" />
</div>
<div class="canvas-size" id="sizeParamB">
<span class="label">b:</span>
<input type="text" />
</div>
<div class="canvas-size" id="sizeParamC">
<span class="label">c:</span>
<input type="text" />
</div>
<div class="canvas-size" id="sizeParamX">
<span class="label">x:</span>
<input type="text" />
</div>
<div class="canvas-size" id="sizeParamY">
<span class="label">y:</span>
<input type="text" />
</div>
<div class="canvas-size" id="sizeParamAngle">
<span class="label">α:</span>
<input type="text" />
</div>
</div>
</div>
<p class="board-text">尺寸</p>
</div>
</div>
<div>
<svg tabindex=0 id="svgPanel" style="overflow:hidden;" xmlns="http://www.w3.org/2000/svg"></svg>
</div>
</div>
</div>
</div>
<script src="js/jquery/jquery.js"></script>
<link rel="stylesheet" href="js/spectrum/spectrum.css">
<script src="js/spectrum/spectrum.js"></script>
<link rel="stylesheet" href="js/jquery-simple-context-menu/jquery.contextmenu.css">
<script src="js/jquery-simple-context-menu/jquery.contextmenu.js"></script>
<script type="text/javascript">
$(function() {
// -----------------------lineSize start-----------------------
$('.js-lineStyle').on('click', function() {
var _obj = $(this).find('dl');
if (_obj.css('display') == 'none') {
_obj.show();
$(this).addClass('active');
} else {
_obj.hide();
$(this).removeClass('active');
}
})
$(document).bind('click', function(e) {
var target = $(e.target);
if (target.closest('.js-lineStyle').length == 0) {
$('.js-lineStyle').find('dl').hide();
$('.js-lineStyle').removeClass('active');
}
})
$("#lineSize dd").on("click", function() {
$("#lineSize dd").removeClass("active");
$(this).addClass("active");
});
// -----------------------lineSize end-----------------------
// -----------------------color start-----------------------
$(".color-left li").on("click", function() {
$(".color-left li").removeClass("active");
$(this).addClass("active");
});
var spectrumColors = [
["#ECECEC", "#184a7b", "#4a84bd", "#c6524a", "#9cbd5a", "#8463a5", "#4aadc6", "#000ff0", "#ffffff", "#000000"],
["#c60000", "#ff0000", "#ffc600", "#ffff00", "#94d652", "#00b552", "#00b5f7", "#0073c6", "#002163", "#7331a5"]
];
$("#colorPalettes").spectrum({
flat: true,
showPaletteOnly: true,
color: '#0073c6',
move: function(tinycolor) {
console.log("color move");
console.log(tinycolor.toHexString())
if ($("#fill_color").hasClass("active")) {
$("#fill_color").attr("data-color", tinycolor.toHexString());
$("#fill_color span").eq(0).css("background", tinycolor.toHexString());
} else if ($("#font_color").hasClass("active")) {
$("#font_color").attr("data-color", tinycolor.toHexString());
$("#font_color span").eq(0).css("background", tinycolor.toHexString());
}
},
palette: spectrumColors
});
$("#customColor").spectrum({
cancelText: "取消",
chooseText: "确定",
allowEmpty: true,
change: function(tinycolor) {
if ($("#fill_color").hasClass("active")) {
$("#fill_color").attr("data-color", tinycolor.toHexString());
$("#fill_color span").eq(0).css("background", tinycolor.toHexString());
} else if ($("#font_color").hasClass("active")) {
$("#font_color").attr("data-color", tinycolor.toHexString());
$("#font_color span").eq(0).css("background", tinycolor.toHexString());
}
}
});
$("#font_color span").css("background", GlobalStatus.defaultFontColor);
$("#font_color").attr("data-color", GlobalStatus.defaultFontColor);
$("#fill_color span").css("background", GlobalStatus.defaultFillColor);
$("#fill_color").attr("data-color", GlobalStatus.defaultFillColor);
// -----------------------color end-----------------------
// -----------------------handle_btn start-----------------------
$(".handle_btn").on("click", function() {
if ($(this).hasClass("active")) {
return false;
} else {
$(".handle_btn").removeClass("active");
$(this).addClass("active");
}
});
// -----------------------handle_btn end-----------------------
})
</script>
<script src="js/core.js"></script>
<script src="js/svg/svg.js"></script>
<script src="js/svg/svg.draggable.js"></script>
<script src="js/global.status.js"></script>
<script src="js/svg.doc.extension.js"></script>
<script src="js/draw.tool.js"></script>
<script src="js/draw.tool.rect.js"></script>
<script src="js/draw.tool.pencil.js"></script>
<script src="js/draw.tool.ellipse.js"></script>
<script src="js/draw.tool.circle.js"></script>
<script src="js/draw.tool.line.js"></script>
<script src="js/draw.tool.polyline.js"></script>
<script src="js/draw.tool.pick.js"></script>
<script src="js/handle.border.js"></script>
<script src="js/handle.border.listener.js"></script>
<script src="js/mouse.action.js"></script>
<script type="text/javascript">
if (!SVG.supported) {
alert('SVG not supported');
}
var svgDraw = SVG("svgPanel").size('100%', 600);
var svgDoc = svgDraw.doc();
var currentDrawTool = null;
function resetCurrentDrawTool() {
currentDrawTool && currentDrawTool.stop();
GlobalStatus.unPickAll();
$("#svgPanel").css("cursor", "default");
}
//bind handle_btn event
$("#tool_rect").on("click", function() {
resetCurrentDrawTool();
currentDrawTool = new DrawTool.Rect(svgDoc);
});
$("#tool_ellipse").on("click", function() {
resetCurrentDrawTool();
currentDrawTool = new DrawTool.Ellipse(svgDoc);
});
$("#tool_circle").on("click", function() {
resetCurrentDrawTool();
currentDrawTool = new DrawTool.Circle(svgDoc);
});
$("#tool_line").on("click", function() {
resetCurrentDrawTool();
currentDrawTool = new DrawTool.Line(svgDoc);
});
$("#tool_polyline").on("click", function() {
resetCurrentDrawTool();
currentDrawTool = new DrawTool.Polyline(svgDoc);
});
$("#tool_pencil").on("click", function() {
resetCurrentDrawTool();
currentDrawTool = new DrawTool.Pencil(svgDoc);
$("#svgPanel").css("cursor", "url(style/img/cur/tool_pencil.cur), auto");
});
$("#tool_pencil").on("dblclick", function() {
resetCurrentDrawTool();
currentDrawTool = new DrawTool.Pencil(svgDoc, 'T');
$("#svgPanel").css("cursor", "url(style/img/cur/tool_pencil.cur), auto");
});
$("#tool_pick").on("click", function() {
resetCurrentDrawTool();
currentDrawTool = new DrawTool.Pick(svgDoc);
});
$("#tool_layer_front").on("click", function() {
var elements = GlobalStatus.getPickeds();
if (elements.length > 0) {
$(elements).each(function(){
this.front();
});
}
});
$("#tool_layer_back").on("click", function() {
var elements = GlobalStatus.getPickeds();
if (elements.length > 0) {
$(elements).each(function(){
this.back();
});
}
});
$("#tool_layer_backward").on("click", function() {
var elements = GlobalStatus.getPickeds();
if (elements.length > 0) {
$(elements).each(function(){
if (this.previous()) {
//TODO 迭代 且使用白名单数组
if (this.previous().type == "g") {
this.backward();
}
this.backward();
}
});
}
});
$("#tool_layer_forward").on("click", function() {
var elements = GlobalStatus.getPickeds();
if (elements.length > 0) {
$(elements).each(function(){
if (this.next()) {
if (this.next().type == "g") {
this.forward();
}
this.forward();
}
});
}
});
$("#tool_fill").on("click", function() {
resetCurrentDrawTool();
});
$("#tool_delete").on("click", function() {
resetCurrentDrawTool();
});
$("#clear_all").on("click", function() {
$(GlobalStatus.getAllElements()).each(function(){
this.handleBorder && this.handleBorder.hide()
this.remove();
});
});
$(function() {
$("#tool_pencil").click();
});
</script>
</body>
</html>