forked from Desousak/LeagueKillViewer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
68 lines (65 loc) · 2.76 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
65
66
67
68
<head>
<link href='https://fonts.googleapis.com/css?family=Ubuntu' rel='stylesheet' type='text/css' />
<link href="css/index.css" rel="stylesheet">
<link href="css/loadingscreen.css" rel="stylesheet">
<link href="css/mapvis.css" rel="stylesheet">
<link href="css/goldvis.css" rel="stylesheet">
<link href="css/pie-style.css" rel="stylesheet">
<script src="js/init.js"></script>
<script src="js/mapvis.js"></script>
<script src="js/goldvis.js"></script>
<script src="js/pievis.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/5.15.0/d3.min.js"></script>
<title>CSCI4210U Project Dashboard</title>
<link rel="icon" href="images/favicon.ico" type="favicon">
<meta name="author" content="Kevin Desousa, Daniel Bullock, Danooshan Sureshkumar">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<div class="toolbar">
<span>
Match Select: <select id="goldGames"></select>
or: <button class="button" id="showAllGames" onclick="showAllGames()">Show All Games</button>
</span>
</div>
<div class="dashboard-grid">
<div id="vis-title">
<p class="blueTeamTXT"><span class="vsTXT"> vs </span><span class="redTeamTXT"></span> </p>
</div>
<div id="map-vis-container">
<p id="map-vis-title"> Distribution of kills/deaths over time </p>
<img id="map-vis-img" src="images/map.png">
<img id="map-vis-annotation" src="images/mapAnnotations.png">
<div id="map-vis-overlay"></div>
<div id="map-vis-brush"></div>
<div id="map-vis-scale"></div>
<input type="checkbox" id="map-vis-toggle" name="map-vis-toggle" onchange="showAnnotations()"> Map Labels
<br><br> Color Scale: <select id="map-color-picker">
<option>Default (Reds)</option>
<option>InterpolateRdGy</option>
<option>InterpolateViridis</option>
<option>InterpolateInferno</option>
</select>
</div>
<div id="gold-vis-container">
<p>~Line Colour = Game Winner</p>
<svg id="goldTitle"></svg>
<svg id="goldChart"></svg>
</div>
<div id="pie-vis-container">
<p>Team Participation</p>
</div>
</div>
<!-- Loading Screen -->
<div class='container'>
<div class='loader'>
<div class='loader--dot'></div>
<div class='loader--dot'></div>
<div class='loader--dot'></div>
<div class='loader--dot'></div>
<div class='loader--dot'></div>
<div class='loader--dot'></div>
<div class='loader--text'></div>
</div>
</div>
</body>