forked from DDR0/ddr0.github.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfrogatto's stats.html
45 lines (44 loc) · 1.91 KB
/
frogatto's stats.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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Frogatto Standard Stats Visulizer</title>
<link rel="stylesheet" type="text/css" href="css/stats black.css">
<script src="http://code.jquery.com/jquery-latest.js"></script>
<!-- <script src="http://www.theargentlark.com/dark-chess/jquery.json.js"></script> -->
<script src="frogatto's stats.js"></script>
<script type="text/javascript">$(document).ready(function() {setup()})</script>
</head>
<body style="background-color: black;">
<p>
<div style="position:fixed;">
<table style="background-color:#222; border-style:solid; border-width:1px;"> <!--Yeah, yeah, I'll replace the table in a bit with the right CSS or something.-->
<tr>
<td>
<button tabindex="2" accesskey="g" type="button" onmouseup="newGraph()" onkeypress="onEnterGraph(event)">Graph</button><br><div style="opacity:0; font-size:75%">!</div>
</td>
<td>
<input tabindex=1 type="text" id="filename" value="titlescreen" onkeypress="onEnterGraph(event)" required>.cfg<br><div style="font-size:75%;"><a href="frogatto's stats level selector.html">level list</a> • <a href="frogatto's stats error codes.html">error codes</a> • <a href="http://www.frogatto.com" target="_blank">frogatto.com</a></div>
<td>
</tr>
<tr>
<td>
zoom
</td>
<td>
<input id="zoom" type="range" value="100" min="3" max="100" onmouseup="graph()" onkeypress="onEnterGraph(event)" onchange="scaleBackground()"/>%
</td>
</tr>
</table>
<div id="message" style="font-size:90%"></div>
</div>
</p>
<img id="level image" style="position:absolute; left:0px; top:0px; z-index:-2;" onload="newGraphContinue()">
<div id="graph" style="position:absolute; left:0px; top:0px; z-index:-1;"></div>
</body>
</html>
<!--
regex for replacement of 'dir' of levels:
search: ([1-9a-z-]*).cfg
replace: <li><a href="\1">\1</a>
-->