-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
55 lines (49 loc) · 2.2 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
<!DOCTYPE html>
<html lang="en" manifest="offline.appcache">
<meta content="yes" name="apple-mobile-web-app-capable">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<meta name="author" content="Pascal Andermatt">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"/>
<title>Tap The Ball</title>
<link href="https://fonts.googleapis.com/css?family=PT+Sans:400,700" rel="stylesheet">
<link rel="stylesheet" href="css/index.css">
<link rel="apple-touch-icon" sizes="180x180" href="https://pandermatt.ch/tap-the-ball/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="https://pandermatt.ch/tap-the-ball/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="https://pandermatt.ch/tap-the-ball/favicon-16x16.png">
<link rel="manifest" href="https://pandermatt.ch/tap-the-ball/manifest.json">
<link rel="mask-icon" href="https://pandermatt.ch/tap-the-ball/safari-pinned-tab.svg" color="#5bbad5">
<link rel="shortcut icon" href="https://pandermatt.ch/tap-the-ball/favicon.ico">
<meta name="apple-mobile-web-app-title" content="Tap The Ball">
<meta name="application-name" content="Tap The Ball">
<meta name="msapplication-config" content="https://pandermatt.ch/tap-the-ball/browserconfig.xml">
<meta name="theme-color" content="#ffffff">
</head>
<body>
<div>
<h1>TAP THE BALL</h1>
<a class="button" id="start-button">Start</a>
<a class="button" id="score-button"></a>
<a class="button" id="mode-button">Mode: Easy</a>
</div>
<p class="about" id="about-button">?</p>
<p class="badge height">0 m</p>
<p class="badge warning"></p>
<p class="badge score">Score: 0</p>
<div class="area">
<div id="start" class="ball">Tap</div>
</div>
<footer>
<div>
<a href="https://github.com/pandermatt/tap-the-ball">Fork me on GitHub</a>
</div>
</footer>
<script src='js/jquery.min.js'></script>
<script src="js/Tone.min.js"></script>
<script src='js/popmotion.global.min.js'></script>
<script src='js/sweetalert2.all.js'></script>
<script src="js/index.js"></script>
<script src="js/web.js"></script>
</body>
</html>