-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
42 lines (41 loc) · 1.5 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
<!DOCTYPE html>
<html manifest="timehack.manifest">
<head>
<title>TimeHack: (10+2)*5</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0; user-scalable=0;" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
<meta name="format-detection" content="telephone=no" />
<link rel="stylesheet" type="text/css" href="css/timehack.css" />
<script src="js/timehack.js"></script>
<script>
timehack = new TimeHack();
</script>
</head>
<body>
<!--
Audio from freesound.org.
By djgriffin (http://www.freesound.org/usersViewSingle.php?id=45941)
tibetan bell with mouth.wav
(http://www.freesound.org/samplesViewSingle.php?id=15402)
tibetan bell.wav
(http://www.freesound.org/samplesViewSingle.php?id=15401)
-->
<audio id="break_bell" autobuffer="autobuffer">
<source src="audio/tibetan_bell.mp3" />
<source src="audio/tibetan_bell.ogg" />
</audio>
<audio id="work_bell" autobuffer="autobuffer">
<source src="audio/tibetan_bell_mouth.mp3" />
<source src="audio/tibetan_bell_mouth.ogg" />
</audio>
<div id="timehack">
<h1 id="iteration">(10+2)*5</h1>
<h2 id="mode">TimeHack</h2>
<p id="timer">
<a id="start" onclick="timehack.start();">Start</a>
</p>
</div>
</body>
</html>