-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
26 lines (24 loc) · 1.04 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>sketchbox</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="feild">
<canvas id="canvas"></canvas></div>
<div class="tools">
<button onclick="undo_last()" type="button" class="button">undo</button>
<button onclick="clear_canvas()" type="button" class="button">Clear</button>
<div onclick="change_color(this)" class="color-feild" style="background:red;"></div>
<div onclick="change_color(this)" class="color-feild" style="background:green;"></div>
<div onclick="change_color(this)" class="color-feild" style="background:blue;"></div>
<div onclick="change_color(this)" class="color-feild" style="background:yellow;"></div>
<input oninput="draw_color = this.value" type="color" class="color-picker">
<input oninput="draw_width = this.value" type="range" min="2" max="100" class="pen-range" value="2">
</div>
</div>
</body>
<script type="text/javascript" src="script.js"></script>
</html>