-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
89 lines (73 loc) · 2.79 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta property="og:title" content="The Weather Search" />
<meta property="og:url" content="http://perso-etudiant.univ-mlv.fr/~pcharles/ens/web1/projet/" />
<meta property="og:image" content="http://perso-etudiant.univ-mlv.fr/~pcharles/ens/web1/projet/img/bg/autumn.jpg" />
<meta property="og:description" content="The Weather Search" />
<meta property="og:site_name" content="The Weather Search" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no" />
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<link rel="icon" type="image/png" href="img/favicon.png" />
<link rel="stylesheet" type="text/css" href="css/style.css">
<style type="text/css">
html { height: 100% }
body { height: 100%; margin: 0px; padding: 0px }
</style>
<title>The Weather Search</title>
<script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=false"></script>
<script type="text/javascript" src="js/script.js"></script>
<!--<script type="text/javascript" src="js/rain.js"></script>-->
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$('#google_search').focus();
});
</script>
</head>
<body >
<div id="about">
<a href="about.html">À propos</a>
</div>
<div id="hello"></div>
<div class="global">
<div class="sun">
</div>
</div>
<div id="infos">
<p id="date"></p>
<p id="temp"></p>
<p id="id_weather"></p>
<p id="adress">Votre géolocalisation est désactivée.</p>
<p id="weather">Choisissez une ville pour découvrir la météo.</p>
<p id="weather_descrip"></p>
<p id="wind"></p>
<p id="clouds_nb"></p>
</div>
<div id="season">
</div>
<section class="rain">
<div id="clouds"></div>
</section>
<div id="all_map">
<div id="map_controls_close">
<input id="close" type="submit" class="input_click" onclick="hide_map()" value=""/>
</div>
<div id="map"></div>
</div>
<div id="map_controls">
<input id="open" type="submit" class="input_click" onclick="show_map()" value=""/>
</div>
<div id="input_search">
<input id="new_city" class="style-city" type="text" onKeyPress="if (event.keyCode == 13) change_city()" placeholder="Rentrez une ville"/>
<input type="submit" class="input_click" onclick="change_city()" value="" />
<form method="get" action="http://www.google.com/search">
<input id="google_search" type="text" name="q" size="25" maxlength="255" value="" placeholder="Recherche Google"/>
<input type="submit" class="input_click" value=""/>
</form>
</div>
<div id="test" style="width:100%; height:100px;">
</div>
</body>
</html>