-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
166 lines (157 loc) · 5.48 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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
<!DOCTYPE html>
<html>
<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">
<meta name="description" content="Weather App for UD811">
<title>Weather</title>
<link rel="stylesheet" type="text/css" href="/PWA/styles/ud811.css">
<!-- manifest and meta theme color -->
<link rel="manifest" href="/PWA/manifest.json">
<meta name="theme-color" content="#2F3BA2">
<!-- Add to home screen for Safari on iOS -->
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="default">
<meta name="apple-mobile-web-app-title" content="Weather">
<link rel="apple-touch-icon" sizes="60x60" href="/PWA/images/icons/apple-60.png">
<link rel="apple-touch-icon" sizes="76x76" href="/PWA/images/icons/apple-76.png">
<link rel="apple-touch-icon" sizes="120x120" href="/PWA/images/icons/apple-120.png">
<link rel="apple-touch-icon" sizes="152x152" href="/PWA/images/icons/apple-152.png">
<link rel="apple-touch-icon" sizes="167x167" href="/PWA/images/icons/apple-167.png">
<link rel="apple-touch-icon" sizes="180x180" href="/PWA/images/icons/apple-180.png">
<link rel="icon" href="/PWA/myFavicon.ico" type="image/x-icon" />
</head>
<body>
<header class="header">
<h1 class="header__title">Weather PWA</h1>
<button id="butRefresh" class="headerButton" aria-label="Refresh"></button>
<button id="butAdd" class="headerButton" aria-label="Add"></button>
</header>
<main class="main">
<div class="card cardTemplate weather-forecast" hidden>
<div class="location"></div>
<div class="date" data-dt="0"></div>
<div class="description"></div>
<div class="current">
<div class="visual">
<div class="icon"></div>
<div class="temperature">
<span class="value"></span><span class="scale">°F</span>
</div>
</div>
<div class="description">
<div class="feels-like">
<span class="value"></span><span class="scale">°F</span>
</div>
<div class="precip"></div>
<div class="humidity"></div>
<div class="wind">
<span class="value"></span>
<span class="scale">mph</span>
<span class="direction"></span>°
</div>
</div>
</div>
<div class="future">
<div class="oneday">
<div class="date"></div>
<div class="icon"></div>
<div class="temp-high">
<span class="value"></span>°
</div>
<div class="temp-low">
<span class="value"></span>°
</div>
</div>
<div class="oneday">
<div class="date"></div>
<div class="icon"></div>
<div class="temp-high">
<span class="value"></span>°
</div>
<div class="temp-low">
<span class="value"></span>°
</div>
</div>
<div class="oneday">
<div class="date"></div>
<div class="icon"></div>
<div class="temp-high">
<span class="value"></span>°
</div>
<div class="temp-low">
<span class="value"></span>°
</div>
</div>
<div class="oneday">
<div class="date"></div>
<div class="icon"></div>
<div class="temp-high">
<span class="value"></span>°
</div>
<div class="temp-low">
<span class="value"></span>°
</div>
</div>
<div class="oneday">
<div class="date"></div>
<div class="icon"></div>
<div class="temp-high">
<span class="value"></span>°
</div>
<div class="temp-low">
<span class="value"></span>°
</div>
</div>
<div class="oneday">
<div class="date"></div>
<div class="icon"></div>
<div class="temp-high">
<span class="value"></span>°
</div>
<div class="temp-low">
<span class="value"></span>°
</div>
</div>
<div class="oneday">
<div class="date"></div>
<div class="icon"></div>
<div class="temp-high">
<span class="value"></span>°
</div>
<div class="temp-low">
<span class="value"></span>°
</div>
</div>
</div>
</div>
</main>
<div class="dialog-container">
<div class="dialog">
<div class="dialog-title">Add new city</div>
<div class="dialog-body">
<select id="selectCityToAdd">
<option value="austin">Austin, TX</option>
<option value="boston">Boston, MA</option>
<option value="chicago">Chicago, IL</option>
<option value="portland">Portland, OR</option>
<option value="sanfrancisco">San Francisco, CA</option>
<option value="seattle">Seattle, WA</option>
</select>
</div>
<div class="dialog-buttons">
<button id="butAddCity" class="button">Add</button>
<button id="butAddCancel" class="button">Cancel</button>
</div>
</div>
</div>
<div class="loader">
<svg viewBox="0 0 32 32" width="32" height="32">
<circle id="ud811Spinner" cx="16" cy="16" r="14" fill="none"></circle>
</svg>
</div>
<script src="/PWA/scripts/app.js"></script>
<script src="/PWA/scripts/localforage-1.4.0.js"></script>
</body>
</html>