-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgeiger.html
44 lines (44 loc) · 1.45 KB
/
geiger.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Fsh?</title>
<!-- Boiler plate------ -->
<link rel="icon" href="/fsh.png" type="image/png">
<meta name="description" content="Fsh?">
<!-- ------- -->
<link rel="stylesheet" href="/media/style.css">
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta property="og:image" content="https://fsh.plus/fsh.png"/>
<meta name="theme-color" content="#a89c9b">
<!-- ------------------ -->
</head>
<body>
<p>----- Chat log -----<br>
[9uy]: Do you copy?<br>
[4wg]: I copy.<br>
[9uy]: What's the status?<br>
[4wg]: Im aproching the source.<br>
[9uy]: Any signals of <i>someone</i>?<br>
[4wg]: Negative.<br>
[4wg]: My geiger counter is starting to increase rapidly.<br>
[9uy]: What are the readings?<br>
[4wg]: Readings are [DATA REMOVED].<br>
[9uy]: Back off, don't get closer.<br>
[4wg]: Its increasing, do you <b>hear</b> it?<br>
----- Disconnected -----</p>
<audio loop id="geiger" src="/media/geiger.mp3"></audio>
<script>
const p = setInterval(() => {
document.getElementById("geiger").play()
.then(() => {
clearInterval(p);
})
.catch(error => {
console.info('User has not interacted with document yet.');
});
}, 500);
</script>
</body>
</html>