-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfunky.html
88 lines (88 loc) · 3.93 KB
/
funky.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>FUNKY SIMON</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.0.0/animate.min.css" />
<link rel='stylesheet' href="style.css">
<link href="https://fonts.googleapis.com/css2?family=Righteous&display=swap" rel="stylesheet">
<link rel="apple-touch-icon" sizes="180x180" href="favicon_io/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="favicon_io/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="favicon_io/favicon-16x16.png">
<link rel="manifest" href="favicon_io/site.webmanifest">
</head>
<body>
<audio controls id='woah' src='audio/Woah.mp3'></audio>
<audio controls id='yeah' src='audio/Yeah.mp3'></audio>
<audio controls id='hot' src='audio/Hot.mp3'></audio>
<audio controls id='funky' src='audio/funky.mp3'></audio>
<audio controls id='disco' src='audio/Disco.mp3'></audio>
<audio controls id='recordScratch' src='audio/RecordScratch.mp3'></audio>
<audio controls id='ow' src='audio/ow.mp3'></audio>
<audio controls id='doit' src='audio/doit.mp3'></audio>
<audio controls id='one' src='audio/one.mp3'></audio>
<audio controls id='two' src='audio/two.mp3'></audio>
<audio controls id='three' src='audio/three.mp3'></audio>
<audio controls id='four' src='audio/four.mp3'></audio>
<audio controls id='five' src='audio/five.mp3'></audio>
<audio controls id='dance' src='audio/dance.mp3'></audio>
<audio controls id='speedUp' src='audio/speedup.mp3'></audio>
<audio controls id='funkySong' src='audio/FunkySong.mp3'></audio>
<div class='bg'>
<div class='one rowOne'></div>
<div class='two rowOne'></div>
<div class='three rowOne'></div>
<div class='four rowOne'></div>
<div class='four rowTwo'></div>
<div class='one rowTwo'></div>
<div class='two rowTwo'></div>
<div class='three rowTwo'></div>
<div class='three rowThree'></div>
<div class='four rowThree'></div>
<div class='one rowThree'></div>
<div class='two rowThree'></div>
<div class='two rowFour'></div>
<div class='three rowFour'></div>
<div class='four rowFour'></div>
<div class='one rowFour'></div>
</div>
<section>
<div class='funky' id="1">F<br><span>1</span></div>
<div class='funky' id="2">U<br><span>2</span></div>
<div class='funky' id="3">N<br><span>3</span></div>
<div class='funky' id="4">K<br><span>4</span></div>
<div class='funky' id="5">Y<br><span>5</span></div>
</section>
<main>
<div class='text'>
<span class='hide early'>EARLY</span>
<span class='hide late'>LATE</span>
<span class='hide woah'>WOAH</span>
<span class='hide yeah'>YEAH</span>
<span class='hide hot'>HOT</span>
<span class='hide funky1'>DANCE</span>
<span class='hide disco'>DISCO</span>
</div>
<div class='buttons'>
<button class='playerCue hide'>READY?</button>
<button class='start'>GET FUNKY?</button>
<button class='reset hide'></button>
<button class='nextRound hide'>READY?</button>
</div>
</main>
<section class='player'>
<div id='player1'>WOAH<br>1</div>
<div id='player2'>YEAH<br>2</div>
<div id='player3'>HOT<br>3</div>
<div id='player4'>DANCE<br>4</div>
<div id='player5'>DISCO<br>5</div>
</section>
<footer>
<div id='round'></div>
<a href="index.html">RETURN TO TITLE</a>
<div id='highScore'>High Score</div>
</footer>
<script src="app.js"></script>
</body>
</html>