forked from blueYOSHI9000/TimeTrialTracker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
94 lines (71 loc) · 3.3 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Time Trial Tracker</title>
<meta name="description" content="A collection of in-game time trial ghosts for various games.">
<meta name="author" content="blueYOSHI9000">
<meta name="robots" content="noodp,noydir" />
<meta property="og:type" content="website">
<meta property="og:title" content="Time Trial Tracker">
<meta property="og:description" content="A collection of in-game time trial ghosts for various games.">
<meta property="og:locale" content="en_US">
<meta property="og:url" content="https://blueyoshi9000.github.io/TimeTrialTracker/">
<meta name="twitter:card" content="summary">
<meta name="twitter:site" content="@yoshisrc">
<meta name="twitter:description" content="A collection of in-game time trial ghosts for various games.">
<meta name="twitter:title" content="Time Trial Tracker">
<meta name="google-site-verification" content="L7wGU_sd9ri9CM2r9zhWhwq2pLkPtuemouRzyRFudC8" />
<meta name="viewport" content="width=device-width, initial-scale=0.8, shrink-to-fit=no">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
<script src="http://code.jquery.com/ui/1.9.2/jquery-ui.js"></script>
<link id="dynamic-favicon" rel="shortcut icon" type="image/png" href="favicon.png"/>
<link rel="stylesheet" href="bootstrap-reboot.min.css">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="mainContainer">
<div id="gameSelect">
<h2 style="text-align: center;">What is Time Trial Tracker?</h2>
<div style="text-align: center;">
Many games have a Time Trial mode with pre-determined times to beat, Time Trial Tracker aims to create a database with all those times in an easy to read table, even if the games don't actually show those times on their own. <br> <br>
<b>Time Trial Tracker is still in Beta, games and features are actively being added.</b>
</div>
<h2 style="text-align: center;">Select a game</h2>
<div id="imgSelectContainer">
<!-- === ENTER GAME HERE === -->
<img src="xml/CrashTrilogy/logo.png" onclick="loadXML('CrashTrilogy')" alt="Mario Party 1" title="Mario Party 1">
<img src="xml/CTRNF/logo.png" onclick="loadXML('CTRNF')" alt="Mario Party 2" title="Mario Party 3">
<img src="xml/MK8D/logo.png" onclick="loadXML('MK8D')" alt="Mario Party 3" title="Mario Party 3">
<!-- ====== -->
</div>
</div>
<span id="contentsContainer">
<div id="contentsTitle">
Contents [<a id="contentsShow" onclick="toggleContents()">Show</a>]
</div>
<div id="contentsWrapper">
<ol id="contents">
</ol>
</div>
</span> <br>
<span id="presets">
</span>
<div id="timetrials">
</div>
<span id="buttonContainer">
<button id="settingsButton" onclick="openSettings()">Settings</button>
<button id="backButton" onclick="location.hash = ''; location.search = '';">Game Select</button>
</span>
</div>
<span id="settingsWrapper">
<div id="settingsContent">
<button id="closeButton" onclick="closeSettings()">Close Settings</button>
<label for="defaultTheme">Force default theme: </label> <input type="checkbox" id="defaultTheme" onchange="changeDefaultTheme()" autocomplete="on"> <br> <br>
<div id="hiddenPresets">
</div>
</div>
</span>
<script src="load.js"></script>
<script src="main.js"></script>
</body>