-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcredits.html
More file actions
155 lines (150 loc) · 4.49 KB
/
credits.html
File metadata and controls
155 lines (150 loc) · 4.49 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
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
147
148
149
150
151
152
153
154
155
<!DOCTYPE HTML>
<html>
<head>
<link rel="stylesheet" href="credits.css" type ="text/css">
<meta charset="utf-8">
<link rel="icon"
href="Asset/euro_flag.jpg" />
<title>Credits</title>
<style type="text/css">
.show {
animation-timing-function:linear;
animation-delay:0s;
animation-name: choose;
animation-duration:.5s;
animation-iteration-count:1;
animation-play-state:running;
animation-fill-mode: forwards;
-webkit-animation-timing-function:linear;
-webkit-animation-delay:0s;
-webkit-animation-name: choose;
-webkit-animation-duration:.5s;
-webkit-animation-iteration-count:1;
-webkit-animation-play-state:running;
-webkit-animation-fill-mode: forwards;
}
@keyframes choose /* Safari and Chrome */ {
from {
visibility:visible;
transform:scale(0, 0);
}
to {
visibility:visible;
}
}
@-webkit-keyframes choose /* Safari and Chrome */ {
from {
visibility:visible;
-webkit-transform:scale(0, 0);
}
to {
visibility:visible;
}
}
/***************************************************/
.go {
animation-timing-function:linear;
animation-delay:0s;
animation-name: go;
animation-duration:.5s;
animation-iteration-count:1;
animation-play-state:running;
animation-fill-mode: forwards;
-webkit-animation-timing-function:linear;
-webkit-animation-delay:0s;
-webkit-animation-name: go;
-webkit-animation-duration:.5s;
-webkit-animation-iteration-count:1;
-webkit-animation-play-state:running;
-webkit-animation-fill-mode: forwards;
}
@keyframes go /* Safari and Chrome */ {
from {
visibility:visible;
}
to {
transform:scale(0, 0);
}
}
@-webkit-keyframes go /* Safari and Chrome */ {
from {
visibility:visible;
}
to {
-webkit-transform:scale(0, 0);
}
}
</style>
</head>
<body onLoad="first();">
<script type="text/javascript">
var image;
var end_sound;
function first(){
document.getElementById("sound").play();
image = document.getElementById('adropos');
end_sound = document.getElementById('end_sound');
setInterval ( function (){show_img ();} , 60000);
self.setTimeout('gotoMainMenu()', 64000);
}
function gotoMainMenu ( ) {
document.location="Index2.html";
}
function show_img () {
image.className = 'show';
end_sound.play();
image.src = 'Asset/GIF/adropos.gif'
}
</script>
<audio id="sound">
<source src="Asset/credits_song.ogg" type="audio/ogg" hidden="true">
<source src="Asset/credits_song.mp3" type="audio.mpeg" hidden="true">
</audio>
<div id="home"> <a href="Index2.html"><img id="home_img" src="Asset/home.png" width="70" height="70"/></a></div>
<div id="titles">
<div id="titlecontent"> <img src="Asset/eu_comenious.gif" width="700" height="200"/>
<p><strong>Tradition Diversity and Acceptance</strong><br/>
<br/>
This game is based on Comenius's Idea.<br/>
In association with the School of Rizokarpaso.<br/>
Participate Countries (alphabetically): <br/>
<section id="countries"> Cyprus<br/>
<img id="cyflag" src="Asset/CY2.png" width="350" height="200" alt="Cyprus" /><br/>
Finland<br/>
<img id="finlandflag" src="Asset/The Finnish flag2.png" width="350" height="200" alt="Finland" /><br/>
Italy<br/>
<img id="italyflag" src="Asset/italy2.png"width="350" height="200" alt="Italy" /><br/>
Poland<br/>
<img id="polandflag" src="Asset/PL flag2.png" width="350" height="200" alt="Poland" /><br/>
Romania<br/>
<img id="romaniaflag" src="Asset/romania2.png" width="350" height="200" alt="Romania" /><br/>
Spain<br/>
<img id="spainflag" src="Asset/Spanish_Flag.png" width="350" height="200" alt="Spain"/><br/>
<br/>
</section>
Special Thanks:<br/>
School of Rizokarpaso<br/>
University Of Cyprus<br/>
<br/>
Web design team<br/>
Site Supervisor: Prof. Georgia Kapitsaki<br/>
Site production lead: Maimaris Stelios<br/>
Art director: Frangeskos Kyriakos<br/>
Web technology lead: Georgiou Stelios<br/>
Site editor: Charalambous Georgia<br/>
Site editor: Rotsidou Georgia<br/>
<br/>
The sounds and the images for the game were sent from each country.<br/>
This game works full functional in Google Chrome and Opera browser and with
some functionality in Firefox Mozilla 25.0.1<br/>
<br/>
Thank you and enjoy!</p>
</div>
</div>
<audio id="end_sound">
<source src="Asset/end_voice.ogg" type="audio/ogg" hidden="true">
<source src="Asset/end_voice.mp3" type="audio.mpeg" hidden="true">
</audio>
<div id="logo_end"> <img id="adropos" src="Asset/adropos.gif"/> </div>
</body>
</html>