-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
99 lines (86 loc) · 3.68 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<!doctype HTML>
<html lang="en">
<head>
<link rel="image_src" href="http://trainertower.com/usage-stats/image_res/rhydon.png" />
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:og="http://ogp.me/ns#">
<meta property="og:title" content="Trainer Tower Usage Stats" />
<meta property="og:type" content="website" />
<meta property="og:image" content="http://trainertower.com/usage-stats/image_res/rhydon.png" />
<title>Showdown VGC Usage</title>
<link rel="icon" type="image/png" href="image_res/favicon.ico" />
<link rel="stylesheet" type="text/css" href="css/table.css">
<link rel="stylesheet" type="text/css" href="css/dropdown.css">
<script src="jquery-3.1.1.min.js"></script>
<script type="text/javascript" src="js/pokedex.js"></script>
<script type="text/javascript" src="js/parse.js"></script>
<link href='https://fonts.googleapis.com/css?family=Open+Sans' rel='stylesheet' type='text/css'>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-86401070-1', 'auto');
ga('send', 'pageview');
</script>
</head>
<body>
<div class="header"><div class="wrapper">
<span class="header-logo"><a href="http://trainertower.com"><img src="image_res/trainertower.png" alt="Trainer Tower" height="50px" /></a></span><span class="nav"><a href="http://trainertower.com">Home</a> | <a href="http://play.pokemonshowdown.com/vgc">Showdown</a> | <a href="https://trainertower.com/vgc-2019-sun-series-speed-tiers/">2019 Speed Tiers</a> | <a href="https://github.com/jake-white/VGC-Usage">GitHub Page</a> | <a href="http://www.trainertower.com/damagecalc">Damage Calculator</a></span>
<div style="clear:both"></div>
</div></div>
<div id="container">
<div id="primary">
<div class="label">Ratings</div>
<select id = "month" onchange = "rateChange()">
<option value="2018-09">September 2018</option>
<option value="2018-08">August 2018</option>
</select>
<select id = "weight" onchange = "rateChange()">
<option value="1760">1760</option>
<option value="1630">1630</option>
<option value="1500">1500</option>
<option value="0">Unweighted</option>
</select>
<div class="tbl-header">
<table cellpadding="0" cellspacing="0" border="0">
<thead>
<tr>
<th class = "rankTD"></th>
<th class = "nameTD">Pokemon</th>
<th class = "percentTD">%</th>
</tr>
</thead>
</table>
</div>
<div class="tbl-content">
<table cellpadding="0" cellspacing="0" border="0">
<tbody class="tbl-body" id="tbl1">
</tbody>
</table>
</div>
</div>
<div id="secondary">
<div class="label">Sets</div>
<table cellpadding="0" cellspacing="0" border="0" class="tbl-content">
<thead>
<tr class="tbl-header">
<th>Moves</th>
<th>Abilities</th>
<th>Items</th>
<th>Spreads</th>
<th>Teammates</th>
</tr>
</thead>
<tbody class="tbl-body" id="tbl2">
</tbody>
</table>
</div>
<div id="content">
<p>Showdown Usage Stat Viewer by <a href="https://twitter.com/squirrelboyVGC">@squirrelboyVGC</a></p>
<p>Credit to <a href="https://twitter.com/InfiniteAntar">Antar</a> for the stats, accessible on <a href ="http://www.smogon.com/stats/">Smogon's servers</a>.</p>
<img src="image_res/yveltal.png" width="100%">
</div>
</div>
</body>
</html>