-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
156 lines (127 loc) · 4.32 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
<!DOCTYPE html>
<!-- Intro-JSON -->
<html>
<head>
<title>Weather</title>
<meta charset="utf-8" />
<link rel="stylesheet" href="css/jquery.mobile.css">
<link rel="stylesheet" href="css/mystyles.css">
<script src="js/jquery.js"></script>
<script src="js/jquery.mobile.js"></script>
<script src="js/myscript.js"></script>
<!-- <script src="js/msContact.js"></script> --> <!--have to add contact script so that it loads for contact.html -->
<script async defer
src="https://maps.googleapis.com/maps/api/js?key=AIzaSyDClZ84J3r5T5bArrH7_uh2YIea-3QPwmc">
</script>
<style>
#map {
width: 100%;
height: 400px;
}
</style>
</head>
<body>
<div id="jsonOut" data-role="page" data-theme="b">
<header data-role="header" >
<!-- <h1><span class="title">HEADER</span> </h1> -->
<table style="text-align:center;"><span id="sheader" ></span> </table>
</header>
<section class="ui-content" role="main">
<div style="text-align:center;">
<h2 id="sdata1" >
</h2>
<div data-role="main" class="ui-content">
<div class="ui-grid-b">
<div class="ui-block-a">
<a href="#windPanel" class="ui-btn ui-icon-wind ui-btn-icon-top ui-shadow ui-corner-all"><span class="title">WIND</span></a><br>
<span>Click to expand Wind Information</span>
</div>
<div class="ui-block-b">
<a href="#atmoPanel" class="ui-btn ui-icon-atmo ui-btn-icon-top ui-shadow ui-corner-all"><span class="title">Atmosphere</span></a><br>
<span>Click to expand Atmosphere Information</span>
</div>
<div class="ui-block-c">
<a href="#astroPanel" class="ui-btn ui-icon-telescope ui-btn-icon-top ui-shadow ui-corner-all"><span class="title">Astronomy</span></a><br>
<span>Click to expand Astronomy Information</span>
</div>
</div>
<div class="ui-grid-a"> <!-- BEGINNING OF GRID A FOR MAP AND FORECAST -->
<div class="ui-block-a">
<div data-role="collapsible">
<!-- <a id="mapDrop" href="#mapDrop" class="ui-btn ui-corner-all ui-shadow">MAP</a><br> -->
<h4>MAP - Click + for MAP</h4>
<p id="mapDrop" > </p>
<div id="map"></div>
</div>
</div>
<div class="ui-block-b">
<div data-role="collapsible">
<h4>Forecast - Click + for Forecast</h4>
<div data-role="collapsible-set">
<div id="14" data-role="collapsible" >
<h3>March 14</h3>
<h3 id="14info" ></h3>
</div>
<div data-role="collapsible">
<h3>March 15</h3>
<h3 id="15info" ></h3>
</div>
<div data-role="collapsible">
<h3 id="16">March 16</h3>
<h3 id="16info" ></h3>
</div>
<div data-role="collapsible">
<h3>March 17</h3>
<h3 id="17info" ></h3>
</div>
</div>
</div>
<span> Open to view Forcast </span>
</div>
</div> <!-- END OF GRID AB B for MAP AND FORECAST-->
</div>
</div>
</section>
<div class="ui-grid-solo">
<div class="ui-block-a">
<a href="pages/contact.html" class="ui-btn ui-corner-all ui-shadow">Contact</a><br>
</div>
</div>
<div>
<footer data-role="footer" >
<!-- <h1><span class="title">FOOTER</span></h1> -->
<nav data-role="navbar">
<ul>
<li><a href="https://www.sheridancollege.ca/" class="ui-btn ui-icon-sheridan ui-btn-icon-top"><span class="title">Sheridan</span></a></li>
<li><a href="#popupDialog" data-rel="popup" data-position-to="window" data-transition="pop" class="ui-btn ui-icon-rich ui-btn-icon-top"><span class="title">About</span></a> </li>
<li><a href="http://www.espncricinfo.com/" class="ui-btn ui-icon-cricket ui-btn-icon-top"><span class="title">Cricinfo</span></a></li>
</ul>
</nav>
</footer>
</div>
<!-- Pop Up-->
<div data-role="popup" id="popupDialog" data-overlay-theme="b" data-theme="b" style="max-width:400px;">
<div data-role="header" data-theme="a">
<h1>About Me</h1>
</div>
<div role="main" class="ui-content">
<h3 id="me2"> </h3>
</div>
</div>
<!-- -------------------------------- -->
<!-- Panels -->
<div id="windPanel" data-role="panel">
<h3 style="text-align:center;">Wind</h3>
</div>
<!-- -------------------------------- -->
<div id="atmoPanel" data-role="panel">
<h3 style="text-align:center;">Atmosphere</h3>
</div>
<!-- -------------------------------- -->
<div id="astroPanel" data-role="panel">
<h3 style="text-align:center;">Astronomy</h3>
</div>
</div>
</div> <!-- jsonout -->
</body>
</html>