-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathVirtualMusicPlayer.html
More file actions
52 lines (47 loc) · 1.48 KB
/
VirtualMusicPlayer.html
File metadata and controls
52 lines (47 loc) · 1.48 KB
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
46
47
48
49
50
51
52
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Virtual Music Player</title>
<link rel="stylesheet" href="./CSS/VirtualMusic.css">
<link rel="shortcut icon" href="./assets/icon.png" type="image/x-icon">
</head>
<body>
<div class="Loading" id="loadClass">
<div class="loading">
<h1>Welcome to Virtual Music Player</h1>
<h2>Guide</h2>
<p>You are in car and your player is Maclaren Music Player</p>
<p>Find secreen in car and click on it </p>
<p>Upload a song and press play</p>
<p>Enjoy 3D audio experience</p>
<h2>Please wait taking you virtually</h2>
<progress id="prog" value="0" max="100" min="0"></progress>
<h3 id="loaded">waiting for DOM load</h3>
</div>
</div>
<div class="Controls" style="display:flex" id="Controls">
<img src="./assets/Ground/MclarenLogo.jpg">
<img src="./assets/Cancel.png" id="Icons">
<h1>Audio Controls</h1>
<div class="console">
<p id="console">No song selected please upload a song and press play</p>
</div>
<input type="file" id="select">
<div class="soundC">
<button id="stop">Stop</button>
<button id="play">Play</button>
<button id="next">Next</button>
</div>
</div>
</body>
</html>
<script type="importmap">
{
"imports":{
"three":"./3D Core Modules/three.module.js"
}
}
</script>
<script type="module" src="./VirtualMusicPlayer.js"></script>