forked from Eating-simulator/Eating-simulator.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtempdownerror.html
132 lines (129 loc) · 4.76 KB
/
tempdownerror.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
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
<html>
<head>
<title>Uh oh, ERROR - Eating Simulator</title>
<style>
body {
text-align: center;
}
spr {
font-size: 5em;
}
sdiv {
font-size: 3em;
}
</style>
<script></script>
</head>
<body>
<spr>Uh oh!</spr>
<sdiv>We've run into a bug.</sdiv>
<div>
ckn or Technodoggo will fix it as soon as possible. Meanwhile, please enjoy this piece of entertainment.
</div>
<audio id="myAudio1" controls autoplay loop>
<source src="/songs/Ducky%20Momo%20Theme%20Song.mp3" type="audio/ogg">
<source src="/songs/Ducky%20Momo%20Theme%20Song.mp3" type="audio/mpeg">
Your browser does not support the audio element.
</audio><br>
<audio id="myAudio2" controls autoplay loop>
<source src="/songs/Taylor Swift - Look What You Made Me Do (128 kbps).mp3" type="audio/ogg">
<source src="/songs/Taylor Swift - Look What You Made Me Do (128 kbps).mp3" type="audio/mpeg">
Your browser does not support the audio element.
</audio><br>
<audio id="myAudio3" controls autoplay loop>
<source src="/songs/Five - Everybody Get Up (Official Video) (128 kbps).mp3" type="audio/ogg">
<source src="/songs/Five - Everybody Get Up (Official Video) (128 kbps).mp3" type="audio/mpeg">
Your browser does not support the audio element.
</audio><br>
<audio id="myAudio4" controls autoplay loop>
<source src="/songs/Beach Boys - Wouldn't It Be Nice (128 kbps).mp3" type="audio/ogg">
<source src="/songs/Beach Boys - Wouldn't It Be Nice (128 kbps).mp3" type="audio/mpeg">
Your browser does not support the audio element.
</audio><br>
<audio id="myAudio5" controls autoplay loop>
<source src="/songs/Backstreet Boys - The One (Official Video) (128 kbps).mp3" type="audio/ogg">
<source src="/songs/Backstreet Boys - The One (Official Video) (128 kbps).mp3" type="audio/mpeg">
Your browser does not support the audio element.
</audio><br>
<audio id="myAudio6" controls autoplay loop>
<source src="/songs/No Authority - Can I Get Your Number (A Girl Like You) (128 kbps).mp3" type="audio/ogg">
<source src="/songs/No Authority - Can I Get Your Number (A Girl Like You) (128 kbps).mp3" type="audio/mpeg">
Your browser does not support the audio element.
</audio><br>
<audio id="myAudio7" controls autoplay loop>
<source src="/songs/Harry Styles - Watermelon Sugar (Official Video) (128 kbps).mp3" type="audio/ogg">
<source src="/songs/Harry Styles - Watermelon Sugar (Official Video) (128 kbps).mp3" type="audio/mpeg">
Your browser does not support the audio element.
</audio><br>
<audio id="myAudio8" controls autoplay loop>
<source src="/songs/98º - Invisible Man (Official Music Video) (128 kbps).mp3" type="audio/ogg">
<source src="/songs/98º - Invisible Man (Official Music Video) (128 kbps).mp3" type="audio/mpeg">
Your browser does not support the audio element.
</audio><br>
<audio id="myAudio9" controls autoplay loop>
<source src="/songs/George Michael - Careless Whisper (Official Video) (128 kbps).mp3" type="audio/ogg">
<source src="/songs/George Michael - Careless Whisper (Official Video) (128 kbps).mp3" type="audio/mpeg">
Your browser does not support the audio element.
</audio><br>
<audio id="myAudio10" controls autoplay loop>
<source src="/songs/Imagine Dragons - Natural (Lyrics) (128 kbps).mp3" type="audio/ogg">
<source src="/songs/Imagine Dragons - Natural (Lyrics) (128 kbps).mp3" type="audio/mpeg">
Your browser does not support the audio element.
</audio><br>
<button onclick="enableLoop()" type="button">Start</button>
<button onclick="checkLoop()" type="button">Check stats</button>
<script>
var x = document.getElementById("myAudio1");
var y = document.getElementById("myAudio2");
var z = document.getElementById("myAudio3");
var v = document.getElementById("myAudio4");
var u = document.getElementById("myAudio5");
var a = document.getElementById("myAudio6");
var b = document.getElementById("myAudio7");
var c = document.getElementById("myAudio8");
var d = document.getElementById("myAudio9");
var e = document.getElementById("myAudio10");
x.loop = true;
y.loop = true;
z.loop = true;
v.loop = true;
u.loop = true;
a.loop = true;
b.loop = true;
c.loop = true;
d.loop = true;
e.loop = true;
x.load();
y.load();
z.load();
v.load();
u.load();
a.load();
b.load();
c.load();
d.load();
e.load();
setInterval(function() {
x.play();
y.play();
z.play();
v.play();
u.play();
a.play();
b.play();
c.play();
d.play();
e.play();
x.volume = Math.floor((Math.random())*100)/100;
y.volume = Math.floor((Math.random())*100)/100;
z.volume = Math.floor((Math.random())*100)/100;
v.volume = Math.floor((Math.random())*100)/100;
u.volume = Math.floor((Math.random())*100)/100;
a.volume = Math.floor((Math.random())*100)/100;
b.volume = Math.floor((Math.random())*100)/100;
c.volume = Math.floor((Math.random())*100)/100;
d.volume = Math.floor((Math.random())*100)/100;
e.volume = Math.floor((Math.random())*100)/100;
}, 250)
</script> </body>
</html>