-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
64 lines (62 loc) · 2.16 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/x-icon" href="images/favicon.ico">
<link href="style.css" rel="stylesheet">
<script src="main.js" defer></script>
<title>Etch-a-Sketch</title>
</head>
<body>
<header>
</header>
<div class="main-contain">
<div class="sideblock" id="controlPanel">
<input type="color" id="colorGrab" value="#000000">
<button id="colorModeBtn">Color Mode</button>
<button id="rainbowModeBtn">Rainbow Mode</button>
<button id="eraserBtn">Eraser</button>
<button id="clearBtn">Clear</button>
</div>
<main>
<h1 class="shiny">Etch A Sketch<sup>®</sup></h1>
<div id="gridContainer">
</div>
<div class="controls">
<div id="left-controller">
<div id="subcontainer-left">
<div id="colorKnob" class="round-controller outer-sh">
<div class="marker"></div>
</div>
</div>
</div>
<div class="slider">
<input id="gridRes" type="range" min="1" max="32" value="32" >
<p id="etch">GRID SIZE</p>
</div>
<div id="right-controller">
<div id="subcontainer-right">
<div id="color-controller" class="round-controller outer-sh">
<div class="marker"></div>
</div>
</div>
</div>
</div>
</main>
<div class="sideblock">
</div>
</div>
<footer>
<p>Copyright ©
<script>
document.write(new Date().getFullYear())
</script>
Mount Mike
<a href="https://github.com/mountmike" target="_blank">
<i class='fa fa-github' style='font-size:1.5em'></i></a>
</p>
</footer>
</body>
</html>