-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
45 lines (36 loc) · 1.51 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
38
39
40
41
42
43
44
45
<!DOCTYPE html>
<html>
<head>
<title>AI DJ WEB APP</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/js/bootstrap.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/1.0.0/p5.js"></script>
<script src="https://unpkg.com/[email protected]/dist/ml5.min.js"></script>
<link rel="stylesheet" type="text/css" href="style.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/1.0.0/addons/p5.sound.min.js"></script>
</head>
<body background="background.jpg">
<center>
<h3 class="btn btn-warning heading">AI DJ WEB APP
<br>
<span class="note">NOTE - Move your left-hand wrist up and down for increasing and decreasing the volume.
Move your right-hand wrist up and down for increasing and decreasing the speed</span>
</h3>
<div class="div_speed">
<img src="disk.gif" alt="" class="div_speed_img">
<br>
<h3 class="btn btn-danger" id="speed">Speed</h3>
</div>
<div class="div_volume">
<img src="disk.gif" alt="" id="div_volume_image">
<br>
<h3 id="volume" class="btn btn-danger">Volume</h3>
</div>
<br><br>
<button onclick="play();" class="btn btn-success play_button">Play</button>
</center>
<script src="main.js"></script>
</body>
</html>