-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlr.html
42 lines (42 loc) · 2.32 KB
/
lr.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>LegoRail Announcements</title>
<link rel="icon" href="logo.png" type="image/png" sizes="1087x1087">
<link rel="manifest" href="manifest.json">
<meta name="theme-color" content="#ffffff">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="sound-board">
<!-- Creating 18 buttons with unique IDs -->
<button id="sound1" onclick="playSound(1)">Destination</button>
<button id="sound2" onclick="playSound(2)">Lego Road (Next)</button>
<button id="sound3" onclick="playSound(3)">Brick Square (Next)</button>
<button id="sound4" onclick="playSound(4)">Legoland East (Next)</button>
<button id="sound5" onclick="playSound(5)">Lego (Next)</button>
<button id="sound6" onclick="playSound(6)">Lego Airport (Next)</button>
<button id="sound7" onclick="playSound(7)">Lego City (Next)</button>
<button id="sound8" onclick="playSound(8)">Legoland (Next)</button>
<button id="sound9" onclick="playSound(9)">Main Road (next)</button>
<button id="sound10" onclick="playSound(10)">Main Road</button>
<button id="sound11" onclick="playSound(11)">Brick Square</button>
<button id="sound12" onclick="playSound(12)">Lego Airport</button>
<button id="sound13" onclick="playSound(13)">Lego City</button>
<button id="sound14" onclick="playSound(14)">Lego Road</button>
<button id="sound15" onclick="playSound(15)">Lego</button>
<button id="sound16" onclick="playSound(16)">Legoland East</button>
<button id="sound17" onclick="playSound(17)">Legoland</button>
<button id="sound18" onclick="playSound(18)">Lego Police (61016)</button>
<button id="sound19" onclick="playSound(19)">Deaparts in 5 Minutes</button>
<button id="sound20" onclick="playSound(20)">Open Door</button>
<button id="sound21" onclick="playSound(21)">Close Door</button>
<button id="sound22" onclick="playSound(22)">Short Platforms</button>
<button id="sound23" onclick="playSound(23)">Terminates</button>
<button id="sound24" onclick="playSound(24)">Ticket Inspection</button>
</div>
<script src="lr.js"></script>
</body>
</html>