-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
111 lines (107 loc) · 3.77 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="robots" content="noindex,follow" />
<meta name="apple-mobile-web-app-capable" content="yes">
<title>WEATHER</title>
<link rel="stylesheet" href="./style.css" type="text/css" />
<link rel="stylesheet" href="./weather-icons/css/weather-icons.min.css" type="text/css" />
</head>
<body>
<div class="header">
<div class="calendar">
<span id="calMon" class="calendar__month">--</span>
<span class="calendar__separator">/</span>
<span id="calDate" class="calendar__date">--</span>
<span id="" class="calendar__day">(<span id="calDay">--</span>)</span>
</div>
<div class="clock">
<span id="clockHH" class="clock__hour">--</span>
<span class="clock__colon">:</span>
<span id="clockMM" class="clock__minute">--</span>
</div>
</div>
<div class="weather">
<div class="weather__main">
<div class="weather__icon">
<i id="todayWeatherIcon"></i>
</div>
<div class="weather__meta">
<div id="todayWeatherText" class="weather__text"></div>
<span class="weather__temp">
<i class="wi wi-thermometer"></i>
<span id="todayWeatherTemp">--</span>℃
</span>
<span class="weather__cloudy">
<i class="wi wi-umbrella"></i> <span id="todayWeatherClouds">--</span>%
</span>
</div>
</div>
<div class="weather__timeline">
<table class="timeline">
<tr>
<th class="timeline__time">6:00</th>
<td class="timeline__content">
<span class="timeline__icon">
<i id="timeline_6_icon" class=""></i>
</span>
<span class="timeline__cloudy">
<span id="timeline_6_cloud">--</span>%
</span>
</td>
</tr>
<tr>
<th class="timeline__time">12:00</th>
<td class="timeline__content">
<span class="timeline__icon">
<i id="timeline_12_icon" class=""></i>
</span>
<span class="timeline__cloudy">
<span id="timeline_12_cloud">--</span>%
</span>
</td>
</tr>
<tr>
<th class="timeline__time">18:00</th>
<td class="timeline__content">
<span class="timeline__icon">
<i id="timeline_18_icon" class=""></i>
</span>
<span class="timeline__cloudy">
<span id="timeline_18_cloud">--</span>%
</span>
</td>
</tr>
<tr>
<th class="timeline__time">24:00</th>
<td class="timeline__content">
<span class="timeline__icon">
<i id="timeline_24_icon" class=""></i>
</span>
<span class="timeline__cloudy">
<span id="timeline_24_cloud">--</span>%
</span>
</td>
</tr>
<tr>
<th class="timeline__time"><span class="timeline__tomorrowText">tomorrow</span> 6:00</th>
<td class="timeline__content">
<span class="timeline__icon">
<i id="timeline_tomorrow_icon" class=""></i>
</span>
<span class="timeline__cloudy">
<span id="timeline_tomorrow_cloud">--</span>%
</span>
</td>
</tr>
</table>
</div>
</div>
<div class="settings">
<a href="javascript:" id="btnReload" class="settings__update"></a>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="./script.js"></script>
</body>
</html>