-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
145 lines (90 loc) · 3.57 KB
/
index.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
133
134
135
136
137
138
139
140
141
142
143
144
145
<html>
<head>
</head>
<body style="background-color:black;">
<img src="app/img/logo.png" id="logo" style="position:fixed;width:608.5;height:205;left:540px;">
<img src="app/img/tipspage.gif" id="lilman" width="25%" height="475cm" style="position:fixed;" top="10px" left="10px">
<img id="cursor" src="app/img/cursor.gif" style="position:fixed;top:580px;left:775px;top:470;">
<button id="start" onmousedown="startDown()" onmouseover="startHover()" onmouseout="startOffHover()" style="font-family:monospace;position:fixed;top:470px;left:810px;color:aquamarine;background-color:black;border-style:none;font-size:20px;">
Start
</button>
<button id="credits" onmousedown="creditsDown()" onmouseover="creditsHover()" onmouseout="creditsOffHover()" style="font-family:monospace;position:fixed;top:510px;left:800px;color:aquamarine;background-color:black;border-style:none;font-size:20px;">
Credits
</button>
<script>
function startHover() {
var x = document.getElementById('cursor');
var y = document.getElementById('start');
x.style.left = 775;
x.style.top = 470
y.style.color = "#0000FF";
}
function creditsHover() {
var x = document.getElementById('cursor');
var y = document.getElementById('credits');
x.style.left = 765;
x.style.top = 510;
y.style.color = "#0000FF";
}
function startOffHover() {
var x = document.getElementById('start');
x.style.color = "aquamarine";
}
function creditsOffHover() {
var x = document.getElementById('credits');
x.style.color = "aquamarine";
}
function startDown() {
window.location = "extdata.html";
}
function creditsDown() {
window.location = "extdata.html";
}
</script>
<style>
@keyframes pissbaby_title {
from {left: 2000}
to {left: 540}
}
@keyframes pissbaby_start {
from {left: 2000}
to {left: 810}
}
@keyframes pissbaby_credits {
from {left: 2000}
to {left: 800}
}
@keyframes pissbaby_cursor {
from {left: 2000}
to {left: 775}
}
@keyframes pissbaby_lilman {
from {left: 2000}
to {left: 10}
}
#cursor {
animation-name: pissbaby_cursor;
animation-duration: 3s;
}
#start {
animation-name: pissbaby_start;
animation-duration: 3s;
}
#credits {
animation-name: pissbaby_credits;
animation-duration: 3s;
}
#logo {
animation-name: pissbaby_title;
animation-duration: 3s;
}
#lilman {
animation-name: pissbaby_lilman;
animation-duration: 3s;
}
body {
overflow: hidden;
}
</style>
</body>
</html>