-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
63 lines (54 loc) · 2.69 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
<!DOCTYPE html>
<html>
<head>
<title>Etch A Sketch</title>
<meta charset="utf-8">
<link rel="stylesheet" href="css/styles.css">
<script type="text/javascript" src="js/script.js" defer></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css">
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico"/>
</head>
<body>
<script>0</script> <!-- fix flash loading in old firefox browsers -->
<div class="main">
<div class="control">
<h3>Etch The Sketch</h3>
<div class="sliders">
<div class="colors">
<label for="c1">Brush</label>
<input id="c1" class="color" type="color" value="#000000">
<label for="c2">Eraser</label>
<input id="c3" class="eraserColor" type="color" value="#ffffff">
<label for="c3">Board</label>
<input id="c3" class="boardColor" type="color" value="#ffffff">
</div>
<div class="sizes">
<label for="s1">Brush</label>
<input id="s1" class="brushSize" type="range" value="1" min="1" max="15" step="2" list="brushSettings">
<datalist id=brushSettings>
<option>1</option>
<option>3</option>
<option>5</option>
<option>7</option>
<option>9</option>
<option>11</option>
<option>13</option>
<option>15</option>
</datalist>
<label for="s2">Grid </label>
<input id="s2" class="gridSize" type="range" value="16" min="2" max="64" step="2">
<label for="s3">Window</label>
<input id="s3" class="windowSize" type="range" value="640" min="160" max="1048" step="32">
</div>
</div>
<div class="panel"></div>
</div>
<div class="container"></div>
</div>
<div class="notes">
<p class="tip">Tip: <em>Doble Click</em> to fill and <em>Hold Left Click</em> to hover over the board.
<em>Hold Right Click</em> to use the eraser.</p>
<p class="footer">Copyright © 2021 <a href="https://github.com/modfun"><i class="fa fa-github fa_custom fa-2x"></i></a></p>
</div>
</body>
</html>