-
Notifications
You must be signed in to change notification settings - Fork 0
/
pic.html
67 lines (58 loc) · 2.32 KB
/
pic.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
<!DOCTYPE html>
<html>
<head>
<script src="lib/p5.min.js"></script>
<script src="sketch.js"></script>
<!-- add extra scripts below -->
<script src="toolbox.js"></script>
<script src="colourPalette.js"></script>
<script src="helperFunctions.js"></script>
<script src="canvasImage.js"></script>
<script src="freehandTool.js"></script>
<script src="lineToTool.js"></script>
<script src="mirrorDrawTool.js"></script>
<script src="sprayCanTool.js"></script>
<script src="eraserTool.js"></script>
<script src="rectangleTool.js"></script>
<script src="editableShapeTool.js"></script>
<script src="polygonTool.js"></script>
<script src="bucketFillTool.js"></script>
<script src="zoomTool.js"></script>
<script src="textTool.js"></script>
<script src="algorithms.js"></script>
<script src="stampTool.js"></script>
<script src="scissorsTool.js"></script>
<script src="noneTool.js"></script>
<link rel="stylesheet" type="text/css" href="style.css" />
</head>
<body style="background-color: #444">
<a href="birthday.html" style="background-color: aliceblue;">Create Birthday Image</a>
<div class="wrapper">
<div class="box header">
Drawing App
<a href="mailto:[email protected]">Contact Me</a>
<button id="Reload">Clear</button>
<button id="saveImageButton">Save Image</button>
<button id="undoButton">Undo</button>
<button id="redoButton">Redo</button>
<button id="History">Layer History</button>
<span id="stateMes"></span>
</div>
<div class="box" id="sidebar"></div>
<div id="content" class="canvas-area"></div>
<div class="box component-area" id="initOpt">
<label for="color">Select Fill Color: </label>
<input type="color" name="color" id="color" value="#4109DC" />
<label for="color">Select Stroke Color: </label>
<input type="color" name="SC" id="SC" value="#7B7342" />
<label for="color"> Stroke Weight: </label>
<input type="number" name="SW" id="SW" value="1" min="1" max="50"/>
</div>
<div class="box options">
<div id="options"></div>
<div id="message" style="color: red"></div>
<div id="info" disabled style="color: paleturquoise"></div>
</div>
</div>
</body>
</html>