-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfunctions.js
More file actions
50 lines (44 loc) · 1.26 KB
/
functions.js
File metadata and controls
50 lines (44 loc) · 1.26 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
// init allthemarquee
allthemarquee.init(function(){
document.getElementById('marquee-counter').innerHTML = this.count;
});
var audio = new Audio('different_heaven_nekozilla_lfz_remix.mp3');
// add the starter marquee
allthemarquee.lvlup();
function keypresstamere(e){
if(e.keyCode==13){
document.getElementById('starter').classList.toggle('hidden');
start();
window.removeEventListener("keypress", keypresstamere);
}
}
window.addEventListener("keypress", keypresstamere);
function thisistheend(){
var marqueeCounter = document.getElementById('marquee-counter');
marqueeCounter.style.right = "initial";
marqueeCounter.style.left = "700px";
marqueeCounter.style.top = "250px";
marqueeCounter.style.fontSize = "2000%";
document.getElementById('countertxt').classList.toggle('hidden');
}
function start(){
audio.play();
disclaimer(function(){
title(8000,function(){
bottomScroller(function(){});
rotating(20000,function(){
snake(30000,function(){
check(30000,function(){
moire(20000,function(){
greets(function(){
starfield(20000,function(){
thisistheend();
;});
});
});
});
});
});
});
});
}