-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
80 lines (77 loc) · 2.94 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<!DOCTYPE html>
<html>
<head>
<title>0x40</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="css/style.css">
<link rel="stylesheet" type="text/css" href="css/animations.css">
<link href='https://fonts.googleapis.com/css?family=Press+Start+2P' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css">
<script src="js/init.js"></script>
<script src="js/visuals.js"></script>
<script src="js/music.js"></script>
</head>
<body>
<!-- UPPER SECTION, SHOWS THE BEAT !-->
<div id="beat">
<span></span>
<span class="big-beat"></span>
<span></span>
</div>
<!-- WAIFU PICTURES !!! !-->
<div id="waifu">
<!--<div id="img"></div>!-->
</div>
<!-- LOWER MENU !-->
<div id="menu">
<!--
** Section 1 **
Contains controls ( volume, random music, pause waifus )
!-->
<div id="section-1">
CONTROLS
<input type="range" min="0" max="1" step="0.01" id="vol-slider"/>
<div id="play-button" class="fa fa-pause"></div>
</div>
<!--
** Section 2 **
Contains current waifu and color
!-->
<div id="section-2">
<div id="waifu-name"></div>
<div id="color-name"></div>
</div>
<div id="section-3">
<!--
** Section 3 **
Allows the user to change music
!-->
<div id="playlist">
<div id="current-song">
Madeon - Finale
</div>
<div id="playlist-popup">
<div onclick="changeMusic(0)">Madeon - Finale</div>
<div onclick="changeMusic(1)">Imagine Dragons - Radioactive</div>
<div onclick="changeMusic(2)">Row Row Fight the Powah (RAGEFOXX & SLUTTT MIX)</div>
<div onclick="changeMusic(3)">Outlaw Star OST - Desire</div>
<div onclick="changeMusic(4)">The Bloody Beetroots - Out of Sight</div>
<div onclick="changeMusic(5)">Buckethead - Smile Without a Face</div>
<div onclick="changeMusic(6)">Crystal Castles - Courtship Dating</div>
<div onclick="changeMusic(7)">Aphex Twin - Vordhosbn</div>
<div onclick="changeMusic(8)">Culprate - Orange Sunrise, Sunset</div>
<div onclick="changeMusic(9)">Hyper - Spoiler</div>
<div onclick="changeMusic(10)">DJ Fresh - Kryptonite</div>
<div onclick="changeMusic(11)">STS9 - Beyond Right Now (Glitch Mob Remix)</div>
<div onclick="changeMusic(12)">Kanye West - Hold My Liquor</div>
<div onclick="changeMusic(13)">Savant - Heart</div>
<div onclick="changeMusic(14)">Vexare - The Clockmaker</div>
</div>
</div>
</div>
</div>
<div id="loading"></div>
<script src="js/loading.js"></script>
</body>
</html>