-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
36 lines (28 loc) · 985 Bytes
/
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
<html>
<head>
<meta charset="utf-8">
<link rel="icon" href="bell.png">
<title>Gunn Bell</title>
<script type="text/javascript" src="schedule.js"></script>
<script type="text/javascript" src="bell.js"></script>
<script type="text/javascript" src="options.js"></script>
</head>
<body>
<img src="bell.png">
<div>
Bell is ready to ring! Please click the sound test at least once after loading the page for the bell to ring.
<!--<button>Button</button> <!-- Firefox requires interaction before playing sound, interaction comes from this button -->
<audio id="bell-sound" src="bell.mp3"></audio>
<audio id="test-sound" src="soundtest.mp3"></audio>
</div>
<div>
Volume: <input type="range" id="volume-slider"> <span id="volume-display"></span>%
</div>
<div>
<button id="test-button">Sound Test</button>
</div>
<div>
This bell is following the <span id="school">school</span> bell schedule.
</div>
</body>
</html>