-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
31 lines (22 loc) · 767 Bytes
/
index.html
File metadata and controls
31 lines (22 loc) · 767 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
27
28
29
30
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/1.9.0/p5.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/1.9.0/addons/p5.sound.min.js"></script>
<script src="sketch.js"></script>
<link rel="stylesheet" href="style.css">
</head>
<body>
<input type="file" id="audioUpload" accept="audio/*" />
<label for="audioUpload">Upload Audio</label>
<div id="nowPlayingContainer">
<div id="name">LOVEBEATZ </div>
<!-- <div id = "type" >RYTHM REMIXER</div> -->
<div id="nowPlayingTitle">Now Playing:</div>
<div id="nowPlayingName">No song loaded</div>
<button id="playPauseBtn">Pause</button>
</div>
<script src="script.js"></script>
</body>
</html>