-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
82 lines (79 loc) · 3.18 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
<!DOCTYPE html>
<html lang="en" manifest="manifest.appcache">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="manifest" href="manifest.json">
<meta name="mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-capable" content="yes">
<link rel="icon" sizes="192x192" href="icon.png">
<link rel="apple-touch-icon" sizes="192x192" href="icon.png">
<meta name="apple-mobile-web-app-status-bar-style" content="default">
<title>Metronome</title>
<link rel="stylesheet" href="lib/font-awesome-4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="info" hidden>
<div class="border">
<div class="content">
<p>
<h1>Simple Metronome</h1>
<i class="subtitle">by Jonathan Herman</i>
<a href="https://github.com/jonthesquirrel"><i class="fa fa-lg fa-github"></i></a>
<a href="https://instagram.com/jonthesquirrel"><i class="fa fa-lg fa-instagram"></i></a>
<a href="https://twitter.com/jonthesquirrel"><i class="fa fa-lg fa-twitter"></i></a>
</p>
<p>Things to try:
<ul>
<li>Scroll or drag up and down to quickly change the tempo, then use the the up/down arrows to fine-tune the exact tempo you want.</li>
<li>Tap the
<span class=fa-stack>
<i class="fa fa-stack-2x fa-circle-thin"></i>
<i class="fa fa-stack-1x fa-hand-o-up"></i>
</span>
button a few times to detect the tempo you're tapping</li>
<li>This metronome works even when you don't have internet</li>
<li>On your phone or tablet, you can "add to home screen" for fullscreen mode</li>
<li>On a computer, open multiple windows of the metronome and set each to a different tempo</li>
</ul>
</p>
<p>The source is available on
<a href="https://github.com/simplemetronome/simplemetronome.github.io"><b>GitHub</b></a>
</p>
</div>
<div class="close-info">< back to metronome</div>
</div>
</div>
<script src="lib/howler.core.min.js"></script>
<script src="lib/d3.v4.min.js"></script>
<script src="app.js"></script>
<script src="upup.min.js"></script>
<script>
UpUp.start({
'cache-version': '1506793800603',
'content-url': 'index.html',
'assets': [
'index.html',
'app.js',
'style.css',
'tick.mp3',
'lib/d3.v4.min.js',
'lib/howler.core.min.js',
'lib/font-awesome-4.7.0/css/font-awesome.min.css',
'lib/font-awesome-4.7.0/fonts/fontawesome-webfont.eot',
'lib/font-awesome-4.7.0/fonts/fontawesome-webfont.svg',
'lib/font-awesome-4.7.0/fonts/fontawesome-webfont.ttf',
'lib/font-awesome-4.7.0/fonts/fontawesome-webfont.woff',
'lib/font-awesome-4.7.0/fonts/fontawesome-webfont.woff2',
'lib/font-awesome-4.7.0/fonts/FontAwesome.otf',
'upup.min.js',
'upup.sw.min.js',
'manifest.json',
'icon.png'
]
})
</script>
</body>
</html>