-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
33 lines (29 loc) · 1.13 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Painter</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="library/spectrum.css">
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="library/spectrum.js"></script>
</head>
<body>
<div class="content">
<h1>Painter</h1>
<canvas id="c1" width="500" height="500"></canvas>
<button id="clear" type="button" name="button" onclick="canvas.clearRect(0,0,500,500);">Clear</button>
<br/>
<canvas id="l_current" width="100" height="50"></canvas>
<div class="line_width">
<button id="lower" type="button" name="button">-</button>
<input id="lineWidthValue" type="text" value="1" size="1" onkeypress="return textFieldEnterLineWidth(event)">
<button id="upper" type="button" name="button">+</button>
</div>
<div class="line_color">
<input id="colorCustom" type='text' value='#000000' />
</div>
</div>
<script type="text/javascript" src="./js/master.js"></script>
</body>
</html>