-
Notifications
You must be signed in to change notification settings - Fork 0
/
simon.php
31 lines (29 loc) · 942 Bytes
/
simon.php
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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Simon</title>
<link href="simon.css" type="text/css" rel="stylesheet" />
<script src="site.con.js"></script>
<script src="node_modules/jquery/dist/jquery.min.js"></script>
<script>
$(document).ready(function() {
new Simon("form");
});
</script>
</head>
<body>
<form><p>
<input type="button" value="Red">
<input type="button" value="Green">
<input type="button" value="Blue">
<input type="button" value="Yellow">
</p>
</form>
<audio id="red" src="audio/red.mp3" preload="auto"></audio>
<audio id="green" src="audio/green.mp3" preload="auto"></audio>
<audio id="blue" src="audio/blue.mp3" preload="auto"></audio>
<audio id="yellow" src="audio/yellow.mp3" preload="auto"></audio>
<audio id="buzzer" src="audio/buzzer.mp3" preload="auto"></audio>
</body>
</html>