-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
26 lines (23 loc) · 982 Bytes
/
index.html
File metadata and controls
26 lines (23 loc) · 982 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Dynamic Background Video with Audio Visualization</title>
<link rel="stylesheet" href="Milch/styles/style.css">
</head>
<body>
<div class="fullscreen-bg">
<video id="bgVideo" playsinline autoplay muted loop class="fullscreen-bg__video">
<!-- Update the src attribute with your Storj video link when available -->
<source src="https://link.storjshare.io/s/ju3ecpwqh6cqeca4x24ukpim66rq/music/ab1233a6-f72f-4968-859f-a3c0bd0713bd.mp4?download=1" type="video/mp4">
Your browser does not support the video tag.
</video>
</div>
<div class="audio-controls">
<button onclick="togglePlay()">Play/Pause</button>
</div>
<canvas id="audioVisualizer"></canvas>
<script src="Milch/scripts/script.js"></script>
</body>
</html>