-
Notifications
You must be signed in to change notification settings - Fork 8
/
index.html
66 lines (53 loc) · 1.81 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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>FUCHSIA</title>
<link href="css/main.css" rel="stylesheet" type="text/css" />
<meta content="text/html; charset=UTF-8" http-equiv="Content-Type">
</head>
<script type="text/javascript" src="js/melonJS-0.9.2-min.js"></script>
<script type="text/javascript" src="js/jquery.js"></script>
<script type="text/javascript" src="js/jquery.cycle.all.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$("#jsapp").empty();
$('#slideshow').cycle({
fx: 'fade',
timeout: 100,
autostop: 1,
end: function() {
$("#slideshow").fadeOut('fast', function(){
$("#history").fadeIn('fast');
var history = setTimeout(function() {
$("#jsapp").show('slow');
$("#jsapp").append('<script src="js/main.js" type="text/javascript" \/><\/script>' +
'<script src="js/entities.js" type="text\/javascript" ><\/script>');
$("#help").fadeIn('slow');
$("#history").hide();
},6000);
});
}
});
});
</script>
<body>
<div id="container" >
<div id="slideshow">
<img src="images/1.jpg" />
<img src="images/2.jpg" />
</div>
<div id="history">
<img src="images/3.png" />
</div>
<div id="jsapp"></div>
<div id="help">
<h1>Instructions</h1>
<ul>
<li>Use your keyboard arrows to move the character</li>
<li>Use the C key to jump</li>
<li>Use the X key to cross over universes</li>
</ul>
</div>
</div>
</body>
</html>