-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
146 lines (136 loc) · 6.63 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Weather</title>
<link rel="stylesheet" href="weather.css">
<script src="app.js" defer></script>
<script src="weather.js" defer></script>
</head>
<body>
<div class="backgroundImage">
<img src="./imgs/backgorund3.jpg" alt="Background" id="bkgImg">
<div id="gradient"></div>
</div>
<main>
<div>
<div class="currentCity">
<article class="loadingAnimation">
<div class="lds-ring"><div></div><div></div><div></div><div></div></div>
</article>
<div class="searchCity">
<input class="cityInput" type="text" placeholder="Enter City">
<ul class="citiesListV">
</ul>
</div>
<div class="weatherInfo">
<section><img
src="https://github.com/basmilius/weather-icons/raw/dev/production/fill/svg/thermometer-warmer.svg">
<p class="maxTemp"></p>
</section>
<section>
<img
src="https://github.com/basmilius/weather-icons/raw/dev/production/fill/svg/thermometer-colder.svg">
<p class="minTemp"></p>
</section>
<section>
<img class="weatherImage"
src="https://github.com/basmilius/weather-icons/raw/dev/production/fill/svg/humidity.svg">
<p class="precipitation"></p>
</section>
<section>
<img class="weatherImage" id="windImage"
src="https://github.com/basmilius/weather-icons/raw/dev/production/fill/svg/wind-beaufort-1.svg">
<p class="wind-speed"></p>
</section>
</div>
</div>
<div class="currentTime">
<div class="timeDiv">
<article class="loadingAnimation">
<div class="lds-ring"><div></div><div></div><div></div><div></div></div>
</article>
<p class="cityName"></p>
<p class="cityTemp" id="time"></p>
<p class="date"></p>
<button class="currentLocation">Get Current Weather</button>
</div>
<div class="foreCastDiv">
<div class="foreCast">
<article class="loadingAnimation">
<div class="lds-ring"><div></div><div></div><div></div><div></div></div>
</article>
<section>
<h3 class="hOne"></h3>
<img class="weatherImages" id="imageOne"
src="https://github.com/basmilius/weather-icons/raw/dev/production/fill/svg/clear-day.svg">
<div class="extraOne">
</div>
</section>
<section>
<h3 class="hTwo"></h3>
<img class="weatherImages" id="imageTwo"
src="https://github.com/basmilius/weather-icons/raw/dev/production/fill/svg/clear-day.svg">
<div class="extraTwo">
</div>
</section>
<section>
<h3 class="hThree"></h3>
<img class="weatherImages" id="imageThree"
src="https://github.com/basmilius/weather-icons/raw/dev/production/fill/svg/clear-day.svg">
<div class="extraThree">
</div>
</section>
<section>
<h3 class="currentForecast"></h3>
<img class="weatherImages" id="currentImage"
src="https://github.com/basmilius/weather-icons/raw/dev/production/fill/svg/clear-day.svg">
<div class="currentExtra">
</div>
</section>
<section>
<h3 class="hFive"></h3>
<img class="weatherImages" id="imageFive"
src="https://github.com/basmilius/weather-icons/raw/dev/production/fill/svg/clear-day.svg">
<div class="extraFive">
</div>
</section>
<section>
<h3 class="hSix"></h3>
<img class="weatherImages" id="imageSix"
src="https://github.com/basmilius/weather-icons/raw/dev/production/fill/svg/clear-day.svg">
<div class="extraSix">
</div>
</section>
<section>
<h3 class="hSeven"></h3>
<img class="weatherImages" id="imageSeven"
src="https://github.com/basmilius/weather-icons/raw/dev/production/fill/svg/clear-day.svg">
<div class="extraSeven">
</div>
</section>
</div>
</div>
</div>
<div class="tempsAndModes">
<article class="loadingAnimation">
<div class="lds-ring"><div></div><div></div><div></div><div></div></div>
</article>
<div class="currentTemperature">
<img class="weatherImage" id="mainImage"
src="https://github.com/basmilius/weather-icons/raw/dev/production/fill/svg/clear-day.svg">
<p class="cityTemp" id="tempDisp"></p>
<button class="temperatureType">°C</button>
</div>
<p class="weatherCondition"></p>
<div class="modeChanger">
<button class="hourlyButton">Hourly</button>
<button class="weeklyButton">Weekly</button>
</div>
</div>
</div>
</main>
</body>
</html>