forked from illacceptanything/illacceptanything
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mrkrstphr.html
50 lines (48 loc) · 2.25 KB
/
mrkrstphr.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
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title>mrkrstphr</title>
<style type="text/css">
body {
background-color: #000;
color: #ccc;
font-size: 9px;
margin: 0;
padding: 0;
}
pre {
margin: 300px auto 0 auto;
width: 660px;
}
</style>
</head>
<body>
<pre>
___ ___ ___ ___ ___ ___ ___ ___
/__/\ / /\ /__/| / /\ / /\ ___ / /\ /__/\ / /\
| |::\ / /::\ | |:| / /::\ / /:/_ / /\ / /::\ \ \:\ / /::\
| |:|:\ / /:/\:\ | |:| / /:/\:\ / /:/ /\ / /:/ / /:/\:\ \__\:\ / /:/\:\
__|__|:|\:\ / /:/~/:/ __| |:| / /:/~/:/ / /:/ /::\ / /:/ / /:/~/:/ ___ / /::\ / /:/~/:/
/__/::::| \:\ /__/:/ /:/___ /__/\_|:|____ /__/:/ /:/___ /__/:/ /:/\:\ / /::\ /__/:/ /:/ /__/\ /:/\:\ /__/:/ /:/___
\ \:\~~\__\/ \ \:\/:::::/ \ \:\/:::::/ \ \:\/:::::/ \ \:\/:/~/:/ /__/:/\:\ \ \:\/:/ \ \:\/:/__\/ \ \:\/:::::/
\ \:\ \ \::/~~~~ \ \::/~~~~ \ \::/~~~~ \ \::/ /:/ \__\/ \:\ \ \::/ \ \::/ \ \::/~~~~
\ \:\ \ \:\ \ \:\ \ \:\ \__\/ /:/ \ \:\ \ \:\ \ \:\ \ \:\
\ \:\ \ \:\ \ \:\ \ \:\ /__/:/ \__\/ \ \:\ \ \:\ \ \:\
\__\/ \__\/ \__\/ \__\/ \__\/ \__\/ \__\/ \__\/
</pre>
<script src="https://code.jquery.com/jquery-1.11.2.min.js"></script>
<script type="text/javascript">
$(document).ready(function() {
var $pre = $("pre");
(function changeColor () {
var r = Math.floor(Math.random() * 156) + 100,
g = Math.floor(Math.random() * 156) + 100,
b = Math.floor(Math.random() * 156) + 100;
$pre.css("color", "rgb(" + r + ", " + g + ", " + b + ")");
window.setTimeout(changeColor, 50);
})();
});
</script>
</body>
</html>