-
Notifications
You must be signed in to change notification settings - Fork 0
/
index-blanc.html
101 lines (87 loc) · 2.38 KB
/
index-blanc.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Fort McMurray: le feu chez vous</title>
<!--
Carte réalisée par Philippe Rivière
http://visionscarto.net/
// -->
<meta content="width=device-width,initial-scale=1.0" name="viewport" />
<link rel="stylesheet" href="leaflet.css" />
<style type="text/css">
html,
body {
height: 100%;
padding: 0;
margin: 0;
-webkit-touch-callout: none;
/* iOS Safari */
-webkit-user-select: none;
/* Chrome/Safari/Opera */
-khtml-user-select: none;
/* Konqueror */
-moz-user-select: none;
/* Firefox */
-ms-user-select: none;
/* Internet Explorer/Edge */
user-select: none;
/* Non-prefixed version, currently
not supported by any browser */
}
#fire {
position: absolute;
top: 0;
z-index: 401;
pointer-events: none;
}
#fireimg {
position: absolute;
opacity: 0.5;
}
#map {
position: absolute;
top: -12.5%;
left: -12.5%;
width: 125%;
height: 125%;
background: beige;
}
#button {
position: absolute;
top: 20px;
width: 386px;
z-index: 402;
}
button.bete {
background: #bbb;
color: black;
border: solid #f59323 3px;
font-size: x-large;
padding: 3px;
cursor: pointer;
}
button.back {
background: #bbb;
color: black;
border: solid grey 3px;
cursor: pointer;
}
</style>
</head>
<body>
<div id="map"></div>
<div id="fire"><img id="fireimg" src="wildfire.fr.gif" width=1170 height=830>
</div>
<div id="button"></div>
<script src="leaflet.js"></script>
<script>var lang = {
teleportez: "Et si le feu était chez vous ?",
retour: "Retour à Fort McMurray, Canada",
image: "wildfire.fr.gif",
}
</script>
<script src="script-blanc.js"></script>
<script src="geolocip.php"></script>
</body>
</html>