-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
63 lines (43 loc) · 1.89 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
<!DOCTYPE html>
<html>
<head>
<title> TarzanFireRun</title>
</head>
<script language="JavaScript">
//funzione che ingrandisce
function lentep() {
//l'ingrandimento avviene moltiplicando per 2 i valori
//di altezza e larghezza dell'immagine
document.img1.width=document.img1.width*1.2
document.img1.height=document.img1.height*1.2
}
//funzione che riduce dividendo per 2
function lentem() {
document.img1.width=document.img1.width/1.2
document.img1.height=document.img1.height/1.2
}
</script>
<body>
<style>
body{
background-color: #000000;
/* background-color: #000000; */
}
</style>
<div id = box1>
<img src="menu/CopertinaSenzaScritte.png" style="width:100%; max-width: 1024px; position: absolute; margin: auto; top: 0; left: 0; right: 0; bottom: 0;" >
</div>
<div id = box2>
<a href="gioco.html"><img src="menu/Corri.png" style=" position: absolute; margin: auto; top: 26px; left: 95px; right: 0; bottom: 0;" onmouseover="this.width=148.5;this.height=41.8;" onmouseout="this.width=135;this.height=38;"><a>
</div>
<div id = box3>
<a href="Slideshow.html"><img src="menu/Storia.png" style=" position: absolute; margin: auto; top: 26px; left: 650px; right: 0; bottom: 0;" onmouseover="this.width=152.8;this.height=39.6;" onmouseout="this.width=148;this.height=36;"><a>
</div>
<div id = box4>
<a href="Autori.html"><img src="menu/Autori.png" style=" position: absolute; margin: auto; top: 610px; left: 95px; right: 0; bottom: 0;"onmouseover="this.width=160.6;this.height=38.5;" onmouseout="this.width=146;this.height=35;"><a>
</div>
<div id = box4>
<a href="Crediti.html"><img src="menu/Crediti.png" class="centro" style=" position: absolute; margin: auto; top: 610px; left: 650px; right: 0; bottom: 0;" onmouseover="this.width=190.3;this.height=38.5;" onmouseout="this.width=173;this.height=35;"><a>
</div>
</body>
</html>