-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.html
More file actions
52 lines (50 loc) · 1.96 KB
/
Copy pathindex.html
File metadata and controls
52 lines (50 loc) · 1.96 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>
<link rel="icon" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2290%22>💿</text></svg>">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<meta name="theme-color" content="#080a0c">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<link rel="apple-touch-icon" href="resources/icon.png">
<link rel="manifest" href="manifest.json">
<title>my mixapp</title>
<link rel="stylesheet" href="resources/styles.css">
<link rel="stylesheet" href="mix/custom.css" onerror="this.remove()">
</head>
<body>
<div class="window-container">
<div class="player-container">
<div class="current-track" id="currentTrack"></div>
<div class="progress-container" id="progressContainer">
<div class="progress-bar" id="progressBar">
<span class="progress-text progress-text-left" id="progressTextLeft"></span>
<span class="progress-text progress-text-center" id="progressTextCenter"></span>
</div>
</div>
<div class="playlist-wrapper">
<div class="shadow-overlay"></div>
<div class="playlist" id="playlist"></div>
</div>
</div>
<div class="controls">
<div class="controls-inner">
<button class="control-button" id="prev"></button>
<button class="control-button" id="playPause"></button>
<button class="control-button" id="next"></button>
</div>
</div>
</div>
<audio id="audioPlayer"></audio>
<script src="resources/script.js"></script>
<script>
if (typeof isLocal !== 'undefined' && isLocal && typeof isInstalled !== 'undefined' && !isInstalled) {
const s = document.createElement('script');
s.src = 'resources/dev.js';
document.body.appendChild(s);
}
</script>
<script src="mix/custom.js" onerror="this.remove()"></script>
</body>
</html>