forked from MasonSchneider/LeagueTactics
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
60 lines (55 loc) · 3.14 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>League Tactics</title>
<link rel="shortcut icon" type="image/x-icon" href="img/favicon.ico"/>
<meta name="description" content="A way to plan strategies in League of Legends">
<meta name="author" content="Mason Schneider">
<link rel="stylesheet" href="css/style.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script src="js/sketch.js"></script>
<script src="js/main.js"></script>
<!--[if lt IE 9]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body>
<div id="container">
<img id="mapLowRes" src="img/mapLowRes.jpg" />
</div>
<canvas id="sketchCanvas" style="height: 645px; width: 766px;"></canvas>
<div id="toolbar">
<h1>League Tactics</h1>
<div id="colors">
<h3 class="sectionHeader">Colors</h3>
<a class="color" href="#" id="red" style="width: 20px; background: red;margin:0px 5px; padding-right: 20px;"></a>
<a class="color" href="#" id="green" style="width: 20px; background: green;margin:0px 5px; padding-right: 20px;"></a>
<a class="color" href="#" id="blue" style="width: 20px; background: blue;margin:0px 5px; padding-right: 20px;"></a>
<a class="color" href="#" id="yellow" style="width: 20px; background: yellow;margin:0px 5px; padding-right: 20px;"></a>
<a class="color" href="#" id="black" style="width: 20px; background: black;margin:0px 5px; padding-right: 20px;"></a>
<a class="color" href="#" id="white" style="width: 20px; background: white;margin:0px 5px; padding-right: 20px;"></a>
</div>
<div id="sizes">
<h3 class="sectionHeader">Sizes</h3>
<a class="size" id="1" href="#" style="width: 20px; text-decoration: none; color: black; padding: 0px 10px; margin: 0px 5px; background: #ccc">1</a>
<a class="size" id="1.5" href="#" style="width: 20px; text-decoration: none; color: black; padding: 0px 10px; margin: 0px 5px; background: #ccc">1.5</a>
<a class="size" id="2" href="#" style="width: 20px; text-decoration: none; color: black; padding: 0px 10px; margin: 0px 5px; background: #ccc">2</a>
<a class="size" id="3" href="#" style="width: 20px; text-decoration: none; color: black; padding: 0px 10px; margin: 0px 5px; background: #ccc">3</a>
</div>
<div id="icons">
<h3 class="sectionHeader">Icons</h3>
<a title="Green Ward" class="icon" href="#" id="green"><img class="iconImage" src="img/green.gif"></a>
<a title="Pink Ward" class="icon" href="#" id="pink"><img class="iconImage" src="img/pink.gif"></a>
<a title="Top Icon" class="icon" href="#" id="top"><img class="iconImage" src="img/top.png"></a>
<a title="Jungler Icon" class="icon" href="#" id="jung"><img class="iconImage" src="img/jung.png"></a>
<a title="Mid Icon" class="icon" href="#" id="mid"><img class="iconImage" src="img/mid.png"></a>
<a title="ADC Icon" class="icon" href="#" id="adc"><img class="iconImage" src="img/adc.png"></a>
<a title="Support Icon" class="icon" href="#" id="supp"><img class="iconImage" src="img/supp.png"></a>
</div>
<div id="functions">
<a id="clear" class="btn" href="#">Clear Drawing</a>
</div>
</div>
</body>
</html>