-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
88 lines (75 loc) · 2.81 KB
/
index.html
File metadata and controls
88 lines (75 loc) · 2.81 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
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
81
82
83
84
85
86
87
88
<!--if you read this you like cum-->
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta charset="UTF-8" />
<title>HACKSTARS'</title>
<link rel="stylesheet" href="./assets/css/index.css" />
<link rel="stylesheet" href="./bootstrap/css/bootstrap.min.css" />
<link rel="shortcut icon" type="image/jpg" href="./assets/logo.jpg"/>
<meta property="og:title" content="blank" />
<meta property="og:type" content="website" />
<meta property="og:url" content="" />
<meta property="og:image" content="" />
<meta property="og:description" content="Spark+" />
<meta name="theme-color" content="#AA8DFF">
</head>
<body class="animate__animated animate__fadeIn">
<div id="wrapper">
<div id="particles-js"></div>
<script src="./assets/particles.js"></script>
<script src="https://cdn.jsdelivr.net/npm/particles.js@2.0.0/particles.min.js"></script>
<div id="preload">
<h2><font color="#959fb4">HACKSTARS'</h2>
</div>
<div id="hidden">
<div id='selector'/>
<div id="main">
<div class="bass blur1">
<img src="./assets/logo.png" id="glow">
</div>
</div>
</div>
<div id="links">
<div class="menu">
<h5><font color="#AA8DFF"> </h5>
<h5><a href="/great/index.html" id="glow" class="letter">Better Site</a></h5>
</div>
</div>
</div>
</div>
<div class="overlay-top-right"></div>
<div class="overlay-bottom-right"></div>
<audio
id="music"
class="music"
src="assets/music.mp3"
autoplay
loop
onplaying=""
style="display: none"
></audio>
<script>
document.getElementById("music").pause();
document.getElementById("hidden").style = "opacity: 0; transition: 2s;";
document.addEventListener("mousedown", handleMouseDown);
function handleMouseDown() {
document.getElementById("music").play();
document.getElementById("preload").style =
"opacity: 0; transition: 0.6s;";
document.getElementById("hidden").style = "opacity: 1; transition: 2s;";
var rythm = new Rythm();
rythm.addRythm("blur1", "blur", 0, 250);
rythm.addRythm('bass', 'pulse', 0, 10, {
min: 0.6,
max: 0.8
})
rythm.connectExternalAudioElement(document.getElementById("music"));
rythm.setGain(0.07);
rythm.start();
document.getElementById("music").play();
document.removeEventListener("mousedown", handleMouseDown);
}
</script>
<script src="./bootstrap/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css"/>
</body>