-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
94 lines (76 loc) · 5.11 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
88
89
90
91
92
93
94
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<title>Weather App</title>
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/3.0.3/normalize.css">
<link href='http://fonts.googleapis.com/css?family=Open+Sans:400,300,600,700' rel='stylesheet' type='text/css'>
<link rel="stylesheet" type="text/css" href="weather.css">
</head>
<!-- Use Modernizer.js for better results -->
<body id="weather-background" class="default-weather">
<canvas id="rain-canvas">
</canvas>
<canvas id="cloud-canvas">
</canvas>
<canvas id="weather-canvas">
</canvas>
<canvas id="time-canvas">
</canvas>
<canvas id="lightning-canvas">
</canvas>
<div class="page-wrap">
<header class="search-bar">
<p class="search-text"><span class="search-location-text">What's the weather like in <input id="search-location-input" class="search-location-input" type="text" placeholder="City"> ?</span></p>
<div class="search-location-button-group">
<button id="search-location-button" class="fa fa-search search-location-button search-button"></button><!--
--><button id="geo-button" class="geo-button fa fa-location-arrow search-button"></button>
</div>
</header>
<div id="geo-error-message" class="geo-error-message hide"><button id='close-error' class='fa fa-times close-error'></button>Uh oh! It looks like we can't find your location. If you're using an Adblocker, it may block our ability to find your location. Please type your city into the search box above!</div>
<div id="front-page-description" class="front-page-description middle">
<h1>Forecast Weather App</h1>
<h2>An ultra lite Weather App</h2>
</div>
<div class="attribution-links hide" id="attribution-links"><button id='close-attribution' class='fa fa-times close-attribution'></button>
<h3>Icons from <a href="https://thenounproject.com/">Noun Project</a></h3>
<ul>
<li class="icon-attribution"><a href="https://thenounproject.com/term/cloud/6852/">Cloud</a> by Pieter J. Smits</li>
<li class="icon-attribution"><a href="https://thenounproject.com/term/snow/64/">Snow</a> from National Park Service Collection</li>
<li class="icon-attribution"><a href="https://thenounproject.com/term/drop/11449/">Drop</a> Alex Fuller</li>
<li class="icon-attribution"><a href="https://thenounproject.com/term/smoke/27750/">Smoke</a> by Gerardo Martín Martínez</li>
<li class="icon-attribution"><a href="https://thenounproject.com/term/moon/13554/">Moon</a> by Jory Raphael</li>
<li class="icon-attribution"><a href="https://thenounproject.com/term/warning/18974/">Warning</a> by Icomatic</li>
<li class="icon-attribution"><a href="https://thenounproject.com/term/sun/13545/">Sun</a> by Jory Raphael</li>
<li class="icon-attribution"><a href="https://thenounproject.com/term/windsock/135621/">Windsock</a> by Golden Roof</li>
</div>
<div id="weather" class="weather middle hide">
<div class="location" id="location"></div>
<div class="weather-container">
<div id="temperature-info" class="temperature-info">
<div class="temperature" id="temperature"></div>
<div class="weather-description" id="weather-description"></div>
</div>
<div class="weather-box">
<ul class="weather-info" id="weather-info">
<li class="weather-item humidity">Humidity: <span id="humidity"></span>%</li><!--
--><li class="weather-item wind">Wind: <span id="wind-direction"></span> <span id="wind"></span> <span id="speed-unit"></span></li>
</ul>
</div>
<div class="temp-change">
<button id="celsius" class="temp-change-button celsius">°C</button><button id="fahrenheit" class="temp-change-button fahrenheit">°F</button>
</div>
</div>
</div>
</div>
<footer class="site-footer">
<div class="attribution site-footer-section">Powered by <a href="http://openweathermap.org/">OpenWeatherMap</a>, Icons from <button id="noun-project" class="noun-project">Noun Project</button></div><!--
--><p class="author site-footer-section">Made by <a href="http://github.com/sidf3ar">Siddharth Nair</a></p>
</footer>
<script src="http://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<script src="weather.js"></script>
</body>
</html>