-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
66 lines (54 loc) · 1.81 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Super Jack - Super Baby</title>
<meta name="description" content="The HTML5 Herald">
<meta name="author" content="SitePoint">
<link href='http://fonts.googleapis.com/css?family=Lato:300,400,700' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="css/styles.css?v=1.0">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<!--[if lt IE 9]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body>
<div id="wrapper">
<div id="music">
<audio src="music/superman.mp3" id="introMusic">
<p>Your browser does not support the <code>audio</code> element.</p>
</audio>
<audio src="music/game-over.mp3" id="gameOverMusic">
<p>Your browser does not support the <code>audio</code> element.</p>
</audio>
<audio src="music/game-play.mp3" id="gamePlay">
<p>Your browser does not support the <code>audio</code> element.</p>
</audio>
</div>
<div id="intro" class="blackBackground">
<div class="logo">
<a href="#" data-play="true" class="play">Play!</a>
</div>
</div>
<div id="gameOver" class="blackBackground hidden">
<img src="img/game-over.png" alt="Game Over!!"><br>
<a href="#" data-play="true" class="play">Play Again</a>
</div>
<div id="stars"></div>
<div id="stars2"></div>
<div id="stars3"></div>
<div class="container scrolling-background">
<div id="loadingArea"></div>
<div id="score">
<span class="score">0</span>
<h3>Score</h3>
</div>
<div id="jack">
<span data-jack="true" data-position=""></span>
</div>
</div>
</div>
<script src="js/plugins/jquery.animateNumber.min.js"></script>
<script src="js/scripts.js"></script>
</body>
</html>