-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
44 lines (42 loc) · 1.36 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
<html>
<head>
<title>CSGO Rankings</title>
<link rel="stylesheet" type="text/css" href="css/styles.css">
</head>
<body>
<svg id="graph"></svg>
<div class="flyout">
<a class="toggle">+</a>
<div class="body hidden">
<h1>CSGO Rankings</h1>
<span>
<em>CSGO Rankings Graph</em> source available on <a href="TODO">GitHub</a>.
Data scraped from <a href="TODO">www.HLTV.org</a>
</span>
<h2>Adjust Data</h1>
<p><strong>Warning:</strong> Rendering large date/rank ranges may slow down your browser.</p>
<div class="control">
<label for="dateFrom" class="left">First Date</label>
<select id="dateFrom" class="right" onchange="refreshGraph()">
</select>
</div>
<div class="control">
<label for="dateTo" class="left">Last Date</label>
<select id="dateTo" class="right" onchange="refreshGraph()">
</select>
</div>
<div class="control">
<label for="topNRanks" class="left">Top <em>N</em> Ranks</label>
<select id="topNRanks" class="right" onchange="refreshGraph()">
</select>
</div>
<div class="control">
<button class="left" id="showDefaultData">Show Default Data</button>
<button class="right" id="showAllData">Show <strong>All</strong> Data!</button>
</div>
<div class="clearfix"></div>
</div>
</div>
<script src="dist/bundle.js"></script>
</body>
</html>