-
Notifications
You must be signed in to change notification settings - Fork 0
/
script.js
217 lines (189 loc) · 6.4 KB
/
script.js
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
// Intersection Observer
const observer = new IntersectionObserver((entries) => {
// Iterate through each entry
entries.forEach((entry) => {
console.log(entry);
if (entry.isIntersecting) {
// Add 'show' class when element enters viewport
entry.target.classList.add('show');
entry.target.classList.remove('no-webkit-fill');
if (entry.target.classList.contains('hidden-hero-text')) {
setTimeout(() => {
entry.target.classList.add('no-webkit-fill');
}, 1000);
}
// Stop observing
observer.unobserve(entry.target);
}
});
});
// Select all elements with the specified classes
const hiddenElements = document.querySelectorAll('.hidden, .hidden-hero-text, .hiddenimg, .hiddenhero, .hidden-hero-btn');
// Observe each of these elements
hiddenElements.forEach((el) => observer.observe(el));
// music controls
const main = document.querySelector('main');
let audio;
let audioPlayed = false;
main.addEventListener('click', function () {
if (!audioPlayed) {
if (!audio) {
audio = new Audio();
audio.id = 'spaceMusic';
main.appendChild(audio);
}
audio.src = "music/after-dark-pandora-cody-chillwithme.mp3";
audio.play();
audioPlayed = true;
audio.addEventListener('ended', function () {
audio.src = "music/KQEJO-emphasis.mp3";
audio.play();
});
}
});
// for modal
document.addEventListener('DOMContentLoaded', function () {
document.querySelectorAll('.btn, .xplore').forEach(function (element) {
element.addEventListener('click', function () {
document.querySelector('.modal-wrapper').classList.add('open');
});
});
document.querySelector('.btn-close').addEventListener('click', function () {
document.querySelector('.modal-wrapper').classList.remove('open');
});
document.querySelector('.modal-wrapper').addEventListener('click', function (event) {
if (event.target === this) {
this.classList.remove('open');
}
});
});
// $(document).ready(function () {
// // Open the modal
// $(".btn, .xplore").click(function () {
// $(".modal-wrapper").addClass("open");
// });
// // Close the modal on clicking the close button
// $(".btn-close").click(function () {
// $(".modal-wrapper").removeClass("open");
// });
// // Close the modal when clicking outside of it
// $(".modal-wrapper").click(function (event) {
// if (event.target === this) {
// $(this).removeClass("open");
// }
// });
// });
// Matrix Rain Animation
// function createMatrixRainAnimation() {
// function r(from, to) {
// return ~~(Math.random() * (to - from + 1) + from);
// }
// function pick() {
// return arguments[r(0, arguments.length - 1)];
// }
// function getChar() {
// return String.fromCharCode(pick(
// r(0x3041, 0x30ff),
// r(0x2000, 0x206f),
// r(0x0020, 0x003f)
// ));
// }
// function loop(fn, delay) {
// let stamp = Date.now();
// function _loop() {
// if (Date.now() - stamp >= delay) {
// fn(); stamp = Date.now();
// }
// requestAnimationFrame(_loop);
// }
// requestAnimationFrame(_loop);
// }
// class Char {
// constructor() {
// this.element = document.createElement('dope');
// this.mutate();
// }
// mutate() {
// this.element.textContent = getChar();
// }
// }
// class Trail {
// constructor(list = [], options) {
// this.list = list;
// this.options = Object.assign(
// { size: 10, offset: 0 }, options
// );
// this.body = [];
// this.move();
// }
// traverse(fn) {
// this.body.forEach((n, i) => {
// let last = (i == this.body.length - 1);
// if (n) fn(n, i, last);
// });
// }
// move() {
// this.body = [];
// let { offset, size } = this.options;
// for (let i = 0; i < size; ++i) {
// let item = this.list[offset + i - size + 1];
// this.body.push(item);
// }
// this.options.offset =
// (offset + 1) % (this.list.length + size - 1);
// }
// }
// class Rain {
// constructor({ target, row }) {
// this.element = document.createElement('p');
// this.build(row);
// if (target) {
// target.appendChild(this.element);
// }
// this.drop();
// }
// build(row = 20) {
// let root = document.createDocumentFragment();
// let chars = [];
// for (let i = 0; i < row; ++i) {
// let c = new Char();
// root.appendChild(c.element);
// chars.push(c);
// if (Math.random() < .5) {
// loop(() => c.mutate(), r(1e3, 5e3));
// }
// }
// this.trail = new Trail(chars, {
// size: r(10, 30), offset: r(0, 100)
// });
// this.element.appendChild(root);
// }
// drop() {
// let trail = this.trail;
// let len = trail.body.length;
// let delay = r(10, 100);
// loop(() => {
// trail.move();
// trail.traverse((c, i, last) => {
// c.element.style = `
// color: hsl(136, 100%, ${85 / len * (i + 1)}%)
// `;
// if (last) {
// c.mutate();
// c.element.style = `
// color: hsl(136, 100%, 85%);
// text-shadow:
// 0 0 .5em #fff,
// 0 0 .5em currentColor;
// `;
// }
// });
// }, delay);
// }
// }
// const matrix = document.querySelector('matrix');
// for (let i = 0; i < 50; ++i) {
// new Rain({ target: matrix, row: 50 });
// }
// }
// createMatrixRainAnimation();