-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
112 lines (108 loc) · 5.47 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
100
101
102
103
104
105
106
107
108
109
110
111
112
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<meta name="viewport" content ="width=device-width,initial-scale=1,user-scalable=yes" />
<meta name="mobile-web-app-capable" content="yes" />
<title>HH Timer</title>
<link rel="icon" sizes="320x320" href="hh.png">
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" rel="stylesheet">
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap-theme.min.css" rel="stylesheet">
<link href="vendor/bootstrap-toggle-2.2.2/css/bootstrap-toggle.min.css" rel="stylesheet">
<link rel="stylesheet" href="css/main.css" />
</head>
<body>
<ul id="tabs" class="nav nav-tabs" data-tabs="tabs">
<li class="active"><a href="#main" data-toggle="tab">Timer</a></li>
<li><a href="#options" data-toggle="tab">More Options</a></li>
</ul>
<div id="my-tab-content" class="tab-content">
<div class="tab-pane active" id="main">
<p>
<form>
<label for="maestro" id="maestro-label">
Maestro Skill
<input checked data-toggle="toggle"
data-on="Active"
data-off="Off"
data-onstyle="success"
type="checkbox" id="maestro" />
</label>
<div class="dropdown" id="selectionlist">
<button class="btn btn-default dropdown-toggle"
type="button"
id="currentselection"
data-toggle="dropdown"
aria-haspopup="true"
aria-expanded="true">
<span class="X"></span><span class="X"></span><span class="X"></span>
Choose the notes
<span class="caret"></span>
</button>
<ul class="dropdown-menu" role="menu" aria-labelledby="currentselection">
</ul>
</div>
</form>
<br>
<table width="100%" class="table table-striped table-bordered">
<thead>
<tr>
<th width="25%">Song</th>
<th width="25%">Effect</th>
<th>Timer</th>
</tr>
</thead>
<tbody id="maintable"> </tbody>
</table>
<br>
<input class="btn btn-danger" style="margin: 10px 45px 10px 5px;" type="submit" value="Reset" onclick="superreset()" />
<input class="btn btn-default" type="submit" id="pause" value="Pause" onclick="togglepause()" />
</div>
<div class="tab-pane" id="options">
<p>
<div class="btn-group-vertical">
<label for="MH4U" class="btn btn-default">
<input checked type="checkbox" id="MH4U" />
Use MH4U names
</label>
<label for="tryhard" class="btn btn-default">
<input checked type="checkbox" id="tryhard" />
HR/G Melodies Only
</label>
<label for="soundfx" class="btn btn-default">
<input checked="" type="checkbox" id="soundfx" />
Sound on end
</label>
<label for="voicefx" class="btn btn-default">
<input type="checkbox" id="voicefx" />
Voice on end
</label>
</div>
</div>
</div>
<a href="https://github.com/richq/hhtimer"><img style="position: absolute; top: 0; right: 0; border: 0;" src="https://camo.githubusercontent.com/a6677b08c955af8400f44c6298f40e7d19cc5b2d/68747470733a2f2f73332e616d617a6f6e6177732e636f6d2f6769746875622f726962626f6e732f666f726b6d655f72696768745f677261795f3664366436642e706e67" alt="Fork me on GitHub" data-canonical-src="https://s3.amazonaws.com/github/ribbons/forkme_right_gray_6d6d6d.png"></a>
<script src="https://code.jquery.com/jquery-2.2.2.min.js"
integrity="sha256-36cp2Co+/62rEAAYHLmRCPIych47CvdM+uTBJwSzWjI="
crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"
integrity="sha384-0mSbJDEHialfmuBBQP6A4Qrprq5OVfW37PRR3j5ELqxss1yVqOtnepnHVP9aJ7xS"
crossorigin="anonymous"></script>
<script src="vendor/bootstrap-toggle-2.2.2/js/bootstrap-toggle.min.js"></script>
<script type="text/javascript" src="vendor/sound.js"></script>
<script type="text/javascript" src="js/data.json"></script>
<script type="text/javascript" src="js/hhtimer.js"></script>
<script>
$('#maestro').change( function() {
maestrochange($(this));
})
$('#tryhard').change( function() {
showdata();
})
$('#MH4U').change( function() {
showdata();
})
</script>
</body>
</html>