Added Dickbutt easteregg (Idea by Pascal)

This commit is contained in:
Tim Windelschmidt 2015-09-12 20:55:40 +02:00
parent 623f9b665f
commit 8966f49322
2 changed files with 15 additions and 0 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 46 KiB

View File

@ -5,3 +5,18 @@ cheet('↑ ↑ ↓ ↓ ← → ← → b a', function () {
cheet('c t d o', function () {
showctdo();
});
cheet('d i c k b u t t', function () {
showDickbutt();
});
function showDickbutt() {
$("body").css("background-image","url('img/dickbutt.png')");
window.setTimeout(removeDickbutt,4000);
}
function removeDickbutt() {
$("body").css("background-image","url('')");
}