-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathg5.html
More file actions
executable file
·73 lines (71 loc) · 1.84 KB
/
Copy pathg5.html
File metadata and controls
executable file
·73 lines (71 loc) · 1.84 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<html>
<style>
p{
color:white;
position:relative;
margin-top:-530px;
text-shadow:2px 2px 2px black;
font-size:30px;
text-align:center;
}
#b{
visibility:hidden;
margin-left:45%;
height:50px;
color:black;
background-color:white;
border-radius:5px;
font-size:20px;
width:150px;
}
#title
{color:white;
top:10px;
position:absolute;
left:22%;
text-shadow:2px 2px 2px black;
font-size:100px;
text-align:center;}
#instr
{visibility:hidden;
font-size:30px;
color:white;}
</style>
<body onload="func(0)">
<img id="i" src="images/wolf7.jpg" width="100%" height="100%">
<div id="title"><font face="algerian">FREAKENSTEIN</font></div>
<p id="msg"></p>
<input id ="b" type="button" name="start" value="I ACCEPT!" onclick="window.location.replace('fmaze2.php')">
<div id="instr"><pre><font face="modern">
INSTRUCTIONS
1.FIND AND ENTER CELLS BY WALKING INTO
THEM TO TALK TO THE CREATURES
2.TALK TO CREATURES BY
CLICKING ON QUESTIONS
3.SOME CREATURES IN THE MAZE
CAN BE KILLED BY CLICKING ON THEM
</font>
</PRE></div>
</body>
<script src="js/jquery.js">
</script>
<script>
var a;
var i=0;
var show=function(t,m,ind,i){
if(ind<m.length){
$(t).append(m[ind++]);
setTimeout(function() {show(t,m,ind,i);},i);
}
else{
clearTimeout(a);
document.getElementById("b").style.visibility="visible";
document.getElementById("instr").style.visibility="visible";
}
}
$(function(){
show("#msg","Welcome to Freakenstein, Agent X. A thief has escaped into the maze of horrors with a priceless artifact. Your mission if you choose to accept it is to follow him into the maze and recover the stolen goods. You can talk to the various creatures of the maze and obtain clues to help you on your quest. But be careful the maze is filled with his minions, although you can try killing some of them by clicking on them. Good luck and godspeed!!!",0,10);
});
a=setTimeout(function() {func(++i)},1000);
</script>
</html>