-
Notifications
You must be signed in to change notification settings - Fork 0
/
mode.html
59 lines (49 loc) · 1.95 KB
/
mode.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Music Player</title>
<link rel="stylesheet" href="https://linfindel.github.io/nadircss/nadir.css">
<style></style>
</head>
<body>
<div id="container" class="absolute-centre column">
<video src="screenshots/album.mp4" id="preview" style="width: 85%; border-radius: 0;" autoplay loop></video>
<div class="column-flat" style="width: calc(85% - 5rem);">
<div class="card-flat-bottom" style="width: 100%;">
<h1 class="text-center">Select colour mode</h1>
<div class="row">
<button id="flash" onclick="setMode('flash')">
<span translate="no" class="material-symbols-rounded">graphic_eq</span>
Flashing lights
</button>
<button id="hybrid" onclick="setMode('hybrid')">
<span translate="no" class="material-symbols-rounded">graphic_eq</span>
Hybrid
</button>
<button id="circle" onclick="setMode('circle')">
<span translate="no" class="material-symbols-rounded">trip_origin</span>
Circle
</button>
<button id="album" onclick="setMode('album')">
<span translate="no" class="material-symbols-rounded">art_track</span>
Album cover
</button>
</div>
</div>
<div id="warning" class="toolbar-warning text-center" style="border-radius: 7.5px; width: calc(100% + 3rem); display: none;">
<h2>This mode is unsafe for photosensitive people</h2>
</div>
<div class="card-flat-top column" style="width: 100%;">
<button onclick="next()">
<span translate="no" class="material-symbols-rounded">arrow_forward</span>
Continue
</button>
</div>
</div>
</div>
<script src="mode.js"></script>
</body>
</html>