-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (34 loc) · 1.96 KB
/
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
37
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="style.css">
<title>Spook fest</title>
</head>
<body>
<div class="wrapper">
<h1 id="action">Action</h1>
<video id="video" autoplay></video>
<button onclick="toggleVideo()">toggle video</button>
</div>
<!-- Sound effects -->
<audio src="sounds/happy-halloween_1.wav" id="happy-halloween" preload="auto" autostart="false"></audio>
<audio src="sounds/no.wav" id="no" preload="auto" autostart="false"></audio>
<audio src="sounds/godzillawav.wav" id="godzilla" preload="auto" autostart="false"></audio>
<audio src="sounds/horse.wav" id="horse" preload="auto" autostart="false"></audio>
<audio src="sounds/wheres-mommy.wav" id="wheres-mommy" preload="auto" autostart="false"></audio>
<audio src="sounds/make_america_great.wav" id="make_america_great" preload="auto" autostart="false"></audio>
<audio src="sounds/be-gone.wav" id="be-gone" preload="auto" autostart="false"></audio>
<audio src="sounds/laugh.wav" id="laugh" preload="auto" autostart="false"></audio>
<audio src="sounds/leave-now.wav" id="leave-now" preload="auto" autostart="false"></audio>
<audio src="sounds/leave-now-2.wav" id="leave-now-2" preload="auto" autostart="false"></audio>
<audio src="sounds/who-is-knocking.wav" id="who-is-knocking" preload="auto" autostart="false"></audio>
<audio src="sounds/who-is-knocking-2.wav" id="who-is-knocking-2" preload="auto" autostart="false"></audio>
<audio src="sounds/who-is-knocking-3.wav" id="who-is-knocking-3" preload="auto" autostart="false"></audio>
<audio src="sounds/bored_with_winning.wav" id="bored_with_winning" preload="auto" autostart="false"></audio>
<script src="https://webrtc.github.io/adapter/adapter-1.0.7.js"></script>
<script src="diff-cam-engine/diff-cam-engine.js"></script>
<script src="app.js"></script>
</body>
</html>