-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.htm
51 lines (50 loc) · 1.59 KB
/
index.htm
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
<!DOCTYPE html>
<html>
<head>
<title>Web Musei</title>
<style>
.flagCountainer {
margin: 0;
position: absolute;
width: 100%;
top: 50%;
-ms-transform: translateY(-50%);
transform: translateY(-50%);
}
img {
animation: sizeChangeOut .5s forwards;
width: 30vw;
}
img:hover {
animation: sizeChangeIn .5s forwards;
}
@keyframes sizeChangeIn{
0% {
}
100% {
transform: scale(1.1);
}
}
@keyframes sizeChangeOut {
0% {
transform: scale(1.1);
}
100% {
transform: scale(1);
}
}
</style>
</head>
<body style="margin: 0;">
<div style="position: fixed; width: 48%; height: 100%;">
<div class="flagCountainer">
<a href="./start.php?lang=it"><img style="float: right; vertical-align: central" src="./res/img/flags/italian.png" /></a>
</div>
</div>
<div style="position: fixed; width: 48%; left: 54%; height: 100%;">
<div class="flagCountainer">
<a href="./start.php?lang=en"><img style="float: left; vertical-align: central" src="./res/img/flags/english.png" /></a>
</div>
</div>
</body>
</html>