-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
executable file
·94 lines (79 loc) · 3.13 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Did you know you can make music on websites?</title>
<script src="js/jquery-1.11.3.min.js"></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<p class="hit-msg"></p>
<div class="hblock">
</div>
<div class="points" style="display:none;">
<div class="ptext" style="display:none;">0</div>
</div>
<div class="etext" style="display:none;">0</div>
<div>
<a href="#" id="playgame"><i class="fa fa-play play"></i></a>
</div>
<div class="speed" style="display:none;">
<input type="text" id="speed" class="speed" value="1000" />
</div>
<main>
<!-- <h1>Did you know you can make music on websites?</h1>-->
<div class="message-container" style="visibility:hidden">
<div class="message" data-message="0">
<p>Why don't you press some of these buttons:</p>
</div>
<div class="message" data-message="1">
<p>Nice! Now, can you follow instructions?</p>
<p>Click on the highlighted notes.</p>
</div>
<div class="message" data-message="2">
<p>You're doing swell bud!</p>
<p>Now do it again.</p>
</div>
<div class="message" data-message="3">
<p>Nailed it!</p>
<p>How about something a bit more complicated?</p>
</div>
<div class="message" data-message="4">
<p>You're probably feeling pretty good, right?</p>
<p>Well, how about you put that all together?</p>
</div>
<div class="message" data-message="5">
<p>Whoaaaa, what's this?!</p>
</div>
</div>
<div class="button-container" style="visibility:hidden">
<a href="#" class="button green" data-note="0"></a>
<a href="#" class="button red" data-note="1"></a>
<a href="#" class="button yellow" data-note="2"></a>
<a href="#" class="button blue" data-note="3"></a>
<a href="#" class="button orange" data-note="4"></a>
<a href="#" class="button purple" data-note="5"></a>
<a href="#" class="button" data-note="6"></a>
</div>
<div class="stage">
<p class="hit-msg-pop">LEVEL <em>1</em></p>
</div>
<div class="clone-container">
<div class="clone-box">
</div>
</div>
<p id="merry-xmas" style="display:none;">
There is only <span>X</span> days left until Christmas!
</p>
<div class="img-block">
</div>
</main>
<div class="stars-bottom"></div>
<div class="stars"></div>
<div class="twinkling"></div>
<div class="clouds"></div>
<script src=" js/audio.js"></script>
<!-- <script src="js/greensock.js"></script>-->
</body>
</html>