-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.html
146 lines (135 loc) · 4.57 KB
/
404.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
146
<!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" xml:lang="eng" lang="eng">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>Lost in the Clouds - Error 404</title>
<meta name="keywords" content="" />
<meta name="generator" content="ArchimedesCMS from Artlogic - http://www.artlogic.net/" />
<meta name="viewport" content="width = 320" />
<meta name="viewport" content="initial-scale=1.0, user-scalable=no" />
<link rel="stylesheet" type="text/css" href="http://samimakela.fi/lostinclouds/styles/reset.css" />
<link rel="stylesheet" type="text/css" href="http://samimakela.fi/lostinclouds/styles/main.css" />
<link href="http://fonts.googleapis.com/css?family=Inconsolata&v1" rel="stylesheet" type="text/css" />
<link href='http://fonts.googleapis.com/css?family=Candal&v1' rel='stylesheet' type='text/css' />
<!-- IE6 fixes are found in styles/ie6.css -->
<!--[if lte IE 6]><link rel="stylesheet" type="text/css" href="lostinclouds/styles/ie6.css" /><![endif]-->
<script src="http://samimakela.fi/lostinclouds/scripts/jquery-1.6.2.js" type="text/javascript"></script>
<script src="http://samimakela.fi/lostinclouds/scripts/jquery-ui-1.7.2.spritely.custom.min.js" type="text/javascript"></script>
<script src="http://samimakela.fi/lostinclouds/scripts/jquery.spritely-0.5.js" type="text/javascript"></script>
<script type="text/javascript">
(function($) {
$(document).ready(function() {
$('#logo').click(function() {
document.location.href = 'http://www.spritely.net/';
});
$('#bird')
.sprite({fps: 9, no_of_frames: 3})
.spRandom({top: 50, bottom: 200, left: 300, right: 320})
.isDraggable()
.activeOnClick()
.active();
$('#clouds').pan({fps: 30, speed: 0.7, dir: 'left', depth: 10});
$('#cloud_2').pan({fps: 30, speed: 2, dir: 'left', depth: 30});
$('#cloud_1').pan({fps: 30, speed: 3, dir: 'left', depth: 70});
$('#balloons').pan({fps: 30, speed: 3, dir: 'up', depth: 70});
$('#cloud_1, #cloud_2, #clouds').spRelSpeed(8);
window.actions = {
fly_slowly_forwards: function() {
$('#bird')
.fps(10)
.spState(1);
$('#cloud_1, #cloud_2, #clouds')
.spRelSpeed(10)
.spChangeDir('left');
},
fly_slowly_backwards: function() {
$('#bird')
.fps(10)
.spState(2);
$('#cloud_1, #cloud_2, #clouds')
.spRelSpeed(10)
.spChangeDir('right');
},
fly_quickly_forwards: function() {
$('#bird')
.fps(20)
.spState(1);
$('#cloud_1, #cloud_2, #clouds')
.spRelSpeed(30)
.spChangeDir('left');
},
fly_quickly_backwards: function() {
$('#bird')
.fps(20)
.spState(2);
$('#cloud_1, #cloud_2, #clouds')
.spRelSpeed(30)
.spChangeDir('right');
},
fly_like_lightning_forwards: function() {
$('#bird')
.fps(25)
.spState(1);
$('#cloud_1, #cloud_2, #clouds')
.spSpeed(40)
.spChangeDir('left');
},
fly_like_lightning_backwards: function() {
$('#bird')
.fps(25)
.spState(2);
$('#cloud_1, #cloud_2, #clouds')
.spSpeed(40)
.spChangeDir('right');
}
};
window.page = {
hide_panels: function() {
$('.panel').hide(300);
},
show_panel: function(el_id) {
this.hide_panels();
$(el_id).show(300);
}
}
});
})(jQuery);
</script>
</head>
<body>
<div id="container">
<div id="stage" class="stage">
<div id="clouds" class="stage"></div>
</div>
<div id="ticket">
<div id="ticket_left">
<p class="text1_a">Lost in the clouds</p>
<p class="text2_a">Flight not found</p>
<p class="text3_a">Error 404</p>
<p class="text4_a">Sorry!</p>
<p class="text5_a">From</p>
<p class="text6_a">Somewhere</p>
<p class="text7_a">To</p>
<p class="text8_a">Nowhere</p>
<p class="text9_a">Seat</p>
<p class="text10_a">404</p>
<p class="text11_a">Try another flight</p>
<p class="text12_a"><a href="http://samimakela.fi">Home</a></p>
</div>
<div id="ticket_right">
<p class="text1_b">First class</p>
<p class="text2_b">Lost in the clouds</p>
<p class="text3_b">From</p>
<p class="text4_b">Somewhere</p>
<p class="text5_b">To</p>
<p class="text6_b">Nowhere</p>
<p class="text7_b">Seat</p>
<p class="text8_b">404</p>
<p class="text9_b">1</p>
<p class="text10_b">103076498</p>
</div>
</div>
</div>
</body>
</html>