-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
110 lines (102 loc) · 4.46 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Weather Foretell</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="card">
<h1 class="project-name">Weather Foretell</h1>
<div class="search">
<input type="text" placeholder="Enter city name" spellcheck="false" aria-label="Enter city name">
<button aria-label="Search"><img src="images/search.png" alt="Search"></button>
</div>
<button id="theme-toggle">Toggle Theme</button>
<div id="loading" style="display: none;">Loading...</div>
<div class="weather">
<img src="images/rain.png" class="weather-icon" alt="Weather icon">
<h1 class="temp">22°C</h1>
<h2 class="city">New York</h2>
<div class="details">
<div class="col">
<img src="images/humidity.png" alt="Humidity icon">
<div>
<p class="humidity">50%</p>
<p>Humidity</p>
</div>
</div>
<div class="col">
<img src="images/wind.png" alt="Wind icon">
<div>
<p class="wind">15 km/h</p>
<p>Wind Speed</p>
</div>
</div>
</div>
</div>
</div>
<script>
const apikey = "4fb2096a398e6f8e80604a99a7044177";
const apiurl = "https://api.openweathermap.org/data/2.5/weather?units=metric&q=";
const searchbox = document.querySelector(".search input");
const searchbtn = document.querySelector(".search button");
const weatherIcon = document.querySelector(".weather-icon");
const loadingIndicator = document.getElementById('loading');
async function checkweather(city) {
loadingIndicator.style.display = 'block';
try {
const response = await fetch(apiurl + city + `&appid=${apikey}`);
if (!response.ok) throw new Error('City not found');
const data = await response.json();
console.log(data);
document.querySelector(".city").innerHTML = data.name;
document.querySelector(".temp").innerHTML = Math.round(data.main.temp) + "°C";
document.querySelector(".humidity").innerHTML = data.main.humidity + "%";
document.querySelector(".wind").innerHTML = data.wind.speed + "km/h";
const weatherMain = data.weather[0].main.toLowerCase();
switch (weatherMain) {
case "clouds":
weatherIcon.src = "./images/clouds.png";
break;
case "clear":
weatherIcon.src = "./images/clear.png";
break;
case "rain":
weatherIcon.src = "./images/rain.png";
break;
case "drizzle":
weatherIcon.src = "./images/drizzle.png";
break;
case "mist":
weatherIcon.src = "./images/mist.png";
break;
default:
weatherIcon.src = "./images/default.png";
break;
}
} catch (error) {
console.error('Error:', error);
alert('Error fetching weather data. Please try again.');
} finally {
loadingIndicator.style.display = 'none';
}
}
searchbtn.addEventListener("click", () => {
checkweather(searchbox.value);
});
// Optional: Add a keypress event listener to trigger search on "Enter" key press
searchbox.addEventListener("keypress", (event) => {
if (event.key === "Enter") {
checkweather(searchbox.value);
}
});
const themeToggle = document.getElementById('theme-toggle');
themeToggle.addEventListener('click', () => {
document.body.classList.toggle('dark-mode');
document.querySelector('.card').classList.toggle('dark-mode');
});
</script>
</body>
</html>