forked from nickstarform/ouobservatory
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Welcome.html
484 lines (456 loc) · 27.5 KB
/
Welcome.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
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
<!--Start of code -->
<!--
Name: OU Observatory Website, Welcome Page
Author: Nickalas Reynolds
-->
<!DOCTYPE html>
<html lang="en">
<!--####################-->
<!-- Header information -->
<!--####################-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="OU Observatory">
<meta name="author" content="Nickalas Reynolds">
<title>OU Observatory</title>
<!--##############-->
<!-- Custom Fonts -->
<!--##############-->
<link href="./fonts/fa/css/font-awesome.min.css" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Lora:400,700,400italic,700italic" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Montserrat:400,700" rel="stylesheet" type="text/css">
<!--###########-->
<!-- Theme CSS -->
<!--###########-->
<link href="./css/bootstrap.min.css" rel="stylesheet">
<link href="./css/grayscale.min.css" rel="stylesheet">
<link href="./css/index.css" rel="stylesheet">
<!--###################-->
<!-- Plugin JavaScript -->
<!--###################-->
<script src="./js/jquery.js"></script>
<script src="./js/jquery_easing.js"></script>
<script src="./js/collapse_toolbar.js"></script>
<script src="./js/bootstrap.min.js"></script>
<script src="./js/weather.js"></script>
<script src="./js/jquery.simpleWeather.min.js"></script>
<script src="./js/moment.js"></script>
<!--##########################-->
<!-- E-obsfucation Javascript -->
<!--##########################-->
<script src="./js/touch.js"></script>
<!--#######################################-->
<!-- Modifies Website Based on Screen Size -->
<!--#######################################-->
<script src="./js/collapse_toolbar.js"></script>
<style>
/* For width 400px and larger: */
@media only screen and (dev-min-width: 1024px) {
.parallax{
background-attachment:scroll
}
}
@media all and (min-width: 768px) {.lart {text-align:left;-webkit-flex: 1 auto;flex:1 auto;-webkit-order:1;order:1;}.lart .rart {text-align:left;-webkit-flex: 1 auto;flex:1 auto;-webkit-order:1;order:1;}.rart{-webkit-flex:5 0px;flex:5 0px;-webkit-order:2;order:2;}}
</style>
<!-- decides background -->
<style>
html,body {
background: url('./img/hubble-ultra-deep-field.jpg') no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
</style>
</head>
<!--######################################-->
<!-- Information to Display on front page -->
<!--######################################-->
<body id="page-top" data-spy="scroll" data-target=".navbar-fixed-top">
<!--############-->
<!-- Navigation -->
<!--############-->
<nav class="navbar navbar-custom navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-main-collapse">
<i class="fa fa-bars"></i>
</button>
<a class="navbar-brand page-scroll" href="#page-top"><!-- style="color: rgb(60,207,23,1)"-->
<i class="fa fa-play-circle"></i> <span class="light">Hello</span>
</a>
</div>
<!--####################-->
<!-- Bottom contact bar -->
<!--####################-->
<div class="about clearfix navbar-fixed-bottom">
<p class="pull-left">Star Party</p>
<div class="social pull-right">
<script>touch3("loonersooners","ou",5,"")</script>
<a href="https://twitter.com/OUStarParty" target="blank"><i class="fa fa-twitter"></i></a>
<a href="https://github.com/nickalaskreynolds/ouobservatory.git" target="blank"> <i class="fa fa-github"></i></a>
</div>
</div>
<!--#################-->
<!-- Navbar toggling -->
<!--#################-->
<div class="collapse navbar-collapse navbar-right navbar-main-collapse">
<ul class="nav navbar-nav">
<!-- Hidden li included to remove active class from about link when scrolled up past about section -->
<li class="hidden">
<a href="./Welcome.html"></a>
</li>
<li>
<a href="#obsschedule" style="color: rgb(60,207,23,1)">Schedule</a>
</li>
<li>
<a href="#currweather" style="color: rgb(60,207,23,1)">Info</a>
</li>
<li>
<a href="./photos.html" style="color: rgb(60,207,23,1)">Photos</a>
</li>
<li>
<a href="./hosts.html" style="color: rgb(60,207,23,1)">Hosts</a>
</li>
<li>
<a href="./equipment.html" style="color: rgb(60,207,23,1)">Equipment</a>
</li>
<li>
<a href="#contact" style="color: rgb(60,207,23,1)">Contact</a>
</li>
<li>
<a href="http://www.ou.edu/lunarsooners/index/Welcome.html" style="color: rgb(60,207,23,1)">Lunar Sooners</a>
</li>
</ul>
</div> <!-- /.navbar-collapse -->
</div> <!-- /.container -->
</nav>
<!--##############-->
<!-- Intro Header -->
<!--##############-->
<div class="col-md-8 col-md-offset-2 center" >
<div style="padding-top: 150px;">
<div id='grad1'>
<div class="containerb" align="center" id='nextparty'>
<header>
<div class="image">
<img src="./img/eclipse_oustarparty_cropped_border.png" width="500" height="150">
</div>
</header>
</div>
<!--#################-->
<!-- Next Star Party -->
<!--#################-->
<div style="padding-top: 50px;" width="100%" align="center" class="flex-container mainwrapper">
<div align="center">
<div style="color: rgba(130, 136, 212,1);display: inline-block;font-size: 3em;"> Our next star party...</div><br>
<div style="color: rgba(256,256,256,1);display: inline-block;font-size: 3em;" id="obsdate"></div><br>
<div style="color: rgba(256,256,256,1);display: inline-block;font-size: 2.5em;" id="obsmess"></div><br>
<div style="color: rgba(256,256,256,1);display: inline-block;font-size: 2em;">
<a class="twitter-timeline" data-width="300" data-height="300" data-theme="dark" href="https://twitter.com/OUStarParty?ref_src=twsrc%5Etfw"><i class="fa fa-twitter"></i> Tweets @OUStarParty</a></div><br>
<div style="color: rgba(256,256,256,1);display: inline-block;font-size: 2em;">
<a href="https://twitter.com/share?ref_src=twsrc%5Etfw" class="twitter-share-button" data-show-count="false"><i class="fa fa-twitter"></i> re-Tweet</a>
</div>
<script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script>
</div>
</div>
<!--###########-->
<!-- Observing -->
<!--###########-->
<div style="padding-top: 100px;" width="100%" class="wrapper flex-container" id="obsschedule">
<div align="center">
<div style="color: rgba(256,256,256,1);display: inline-block;font-size: 2em;"> We plan to observe: </div><br>
</div>
<div align="center" class="flex-container">
<ul>
<li style="padding-right: 147px;">
<div style="color: rgba(256,256,256,1);font-size: 1.5em;" id="obsz"></div>
<a id='starZa' href="./Welcome.html" target="_blank">
<img id='starZ' src="./img/default.jpg" width="147" height="142">
</a>
</li>
<li style="padding-right: 147px;">
<div style="color: rgba(256,256,256,1);font-size: 1.5em;" id="obso"></div>
<a id='starOa' href="./Welcome.html" target="_blank">
<img id='starO' src="./img/default.jpg" width="147" height="142">
</a>
</li>
<li style="padding-right: 147px;">
<div style="color: rgba(256,256,256,1);font-size: 1.5em;" id="obstw"></div>
<a id='starTwa' href="./Welcome.html" target="_blank">
<img id='starTw' src="./img/default.jpg" width="147" height="142">
</a>
</li>
<li style="padding-right: 147px;">
<div style="color: rgba(256,256,256,1);font-size: 1.5em;" id="obsth"></div>
<a id='starTha' href="./Welcome.html" target="_blank">
<img id='starTh' src="./img/default.jpg" width="147" height="142">
</a>
</li>
</ul>
</div>
</div>
<!--##############-->
<!-- The Schedule -->
<!--##############-->
<div class="flex-container mainwrapper" style="padding-top: 150px;" width="100%">
<div align="center">
<div style="color: rgba(130, 136, 212,1);display: inline-block;font-size: 2.25em;" id="dateschedule"></div>
<div align="center" class="flex-container-schedule">
<ul><!--Months-->
<li>
<p id="monthOneN" style="color: rgba(256,0,0,1);font-size: 30px;"></p>
<p id="monthOneD" style="color: rgba(256,256,256,1);font-size: 25px;"></p>
</li>
<li>
<p id="monthTwoN" style="color: rgba(256,0,0,1);font-size: 30px;"></p>
<p id="monthTwoD" style="color: rgba(256,256,256,1);font-size: 25px;"></p>
</li>
<li>
<p id="monthThrN" style="color: rgba(256,0,0,1);font-size: 30px;"></p>
<p id="monthThrD" style="color: rgba(256,256,256,1);font-size: 25px;"></p>
</li>
<li>
<p id="monthFouN" style="color: rgba(256,0,0,1);font-size: 30px;"></p>
<p id="monthFouD" style="color: rgba(256,256,256,1);font-size: 25px;"></p>
</li>
<li>
<p id="monthFivN" style="color: rgba(256,0,0,1);font-size: 30px;"></p>
<p id="monthFivD" style="color: rgba(256,256,256,1);font-size: 25px;"></p>
</li>
<li>
<p id="monthSixN" style="color: rgba(256,0,0,1);font-size: 30px;"></p>
<p id="monthSixD" style="color: rgba(256,256,256,1);font-size: 25px;"></p>
</li>
</ul>
</div>
</div>
</div><br>
<!--##############-->
<!-- General Info -->
<!--##############-->
<div class="flex-container mainwrapper" style="padding-top: 150px;color: rgba(256,256,256,1);font-size: 1em;"" width="100%" id="currweather">
<div align="center">
<h2 style="color: rgba(130, 136, 212,1);display: inline-block;font-size: 2.25em;">General Information</h2>
<p class="description">
Every Wednesday night while OU is in session, the Physics and Astronomy department sponsors <em>FREE</em> public star parties on the roof of the observatory, which is located on the East side of Asp Avenue just South of Lindsey Avenue. Look for the building with the white dome on top. To reach the roof, climb the exterior staircase on the West side of the building.<br>
<em>Note: Regrettably, the observatory roof is currently wheelchair inaccessible. This staircase is the only way to reach the roof.</em><br>
<em>Future: Coming soon is our new observatory that will be wheelchair accessible, ~2018-2019</em><br>
A typical night could include a planet or two, binary stars, star clusters, or maybe one of the brighter nebulae. All ages are welcome, but we ask that younger children be under adult supervision at all times. <br>
Viewing times change throughout the year, so please check this page for current observing times and weather cancellations. The final decision on weather cancellations will be made <em>three hours</em> before the scheduled start time at the latest. For the latest cloud predictions at the observatory, go to current weather or click on the clouds: <a href="http://www.cleardarksky.com/c/UOObOKkey.html?1" target="blank"><img src="./img/clouds.jpg" style="border: none; height:35px;width: 100px;"></a>
</p><br>
<div><a href="https://www.google.com/maps/place/35%C2%B012'09.0%22N+97%C2%B026'38.6%22W/@35.2025,-97.4462443,17z/data=!3m1!4b1!4m5!3m4!1s0x0:0x0!8m2!3d35.2025!4d-97.4440556", target='_blank'>Location 35° 12` 9``N, 97° 26` 38.6``W</a></div>
<img src="./img/map_updated.png" style="border: none; min-height:200px;min-width: 200px;height:400px;width: 200px;">
<p>
We have obtained permission for visitors to park in the Asp Parking Garage north of Lindsey on star party evenings.
</p>
</div>
<div align="center">
<h2 style="color: rgba(130, 136, 212,1);display: inline-block;font-size: 2.25em;">History</h2>
<p class="description">
Built in 1939, with a 10 inch Newtonian reflector and a smaller 3.5 inch telescope, it was housed in a 16-foot dome atop what was at the time, the southernmost building on campus. In 1995, the original 10 inch telescope was replaced by a 0.4 metres (16 inches) Meade SCT (shown below) (Credit wikipedia). Currently the facility houses an 11 inch Celestron, numerous smaller 8 inch Celestrons, in addition to the main 16 inch Meade. Future plans of a new 14 inch Meade SCT will be installed at the new Chun Li Hall observatory ~2019.
</p><br>
<img src="./img/observatory.jpg" style="border: none; min-height:200px;min-width: 200px;height:400px;width: 300px;">
</div>
<div align="center">
<h2 style="color: rgba(130, 136, 212,1);display: inline-block;font-size: 2.25em;">Research</h2>
<p class="description">
While the facilities used to be utilized by OKC and Norman proper for research purposes, the telescopes have since retired to be used for outreach and public service. During the time of research, professional photographics plates were taken in numerous surveys and detailed observations runs by students, professors, and researchers. Nearly 20,000 original photographic glass plates are still housed at the observatory.
</p><br>
</div>
</div>
<!--#########-->
<!-- Weather -->
<!--#########-->
<div class="flex-container mainwrapper" style="color: rgba(130, 136, 212,1);font-size: 2.5em;padding-top: 150px;" id="currweather">
<h2>Current Weather</h2>
</div>
<div align="center">
<img src="http://www.cleardarksky.com/c/UOObOKcsk.gif?c=2282410"></a>
</div>
<section id="weather" class="flex-container center mainwrapper" style="color: rgba(256,256,256,1);font-size: 30px">
</section>
<!--##############-->
<!-- Contact Info -->
<!--##############-->
<div class="flex-container mainwrapper" style="color: rgba(256,256,256,1);font-size: 1em;padding-top: 150px;" id="contact">
<div class="outPopUp">
<h2 style="color: rgba(130, 136, 212,1);display: inline-block;font-size: 2.25em;">Contact Lunar Sooners</h2>
<p>Please contact us if you are interested in any of the work we do or have any questions... </p>
<div class="center" style="vertical-align: middle;">
<ul class="list-inline banner-social-buttons">
<li>
<a><script>touch4("lunarsooners","ou",5,"","Email")</script></a>
</li>
<li>
<a href="https://www.facebook.com/oulunarsooners/" class="btn btn-default btn-lg" target="blank"><i class="fa fa-facebook fa-fw"></i><span class="network-name">FB</span></a>
</li>
<li>
<a href="https://twitter.com/OUStarParty" class="btn btn-default btn-lg" target="blank"><i class="fa fa-twitter fa-fw"></i><span class="network-name">Twitter</span></a>
</li>
<li>
<a href="https://www.nhn.ou.edu/" class="btn btn-default btn-lg" target="blank"><i class="fa fa-map-marker fa-fw"></i><span class="network-name">Where?</span></a>
</li>
<li>
<a href="https://github.com/nickalaskreynolds/ouobservatory.git" class="btn btn-default btn-lg" target="blank"><i class="fa fa-github fa-fw"></i><span class="network-name">Github</span></a>
</li>
</ul>
</div>
</div>
</div>
<!--########-->
<!-- Footer -->
<!--########-->
<footer>
<div class="flex-container mainwrapper" style="width:100%;">
<div style="font-size: 2em">We provide these services free to the public, however, we do accept <a style="display: inline-block" href="https://giving.oufoundation.org/OnlineGivingWeb/Giving/OnlineGiving/devmain" target="blank">donations</a> which goes towards travels and equipment.<br></div>
<div style="color: rgb(60,207,23,1);display: inline-block;font-size: 1em;"><script class="container text-center"> document.write("This page was last modified on: " + document.lastModified +"") </script></div><br>
<a style="display: inline-block;font-size: 1em;" href="https://www.nhn.ou.edu/~reynolds/" target="blank">Webmaster</a><br>
<p style="padding-top: 0pt;color: rgba(130, 136, 212,1);display: inline-block;font-size: 1em;" class="paragraph_style_16"><a target="blank" title="https://www.nhn.ou.edu/research/astrophysics-and-cosmology" href="https://www.nhn.ou.edu/research/astrophysics-and-cosmology">Astrophysics Research at OU<br /></a></p>
</div>
</footer>
</div>
</div>
</div>
<!--###################-->
<!-- Plugin JavaScript -->
<!--###################-->
<!-- populates the observation date and message -->
<script>
function populateObs(url) {
var xhr = new XMLHttpRequest();
xhr.onload = function () {
if (this.responseText.split("\n")[0]){
document.getElementById('obsdate').textContent = this.responseText.split("\n")[2].split("=")[1];
document.getElementById('obsmess').textContent = this.responseText.split("\n")[5].split("=")[1];
}
};
xhr.open('GET', url);
xhr.send();
}
populateObs('./Website.properties');
</script>
<!-- Creates the list of stars to be observed -->
<script>
function obsStars(url) {
var xhr = new XMLHttpRequest();
xhr.onload = function () {
if (this.responseText.split("\n")[0]){
document.getElementById('obsz').textContent = this.responseText.split("\n")[8].split("=")[1].split(',')[0];
document.getElementById('obso').textContent = this.responseText.split("\n")[8].split("=")[1].split(',')[1];
document.getElementById('obstw').textContent = this.responseText.split("\n")[8].split("=")[1].split(',')[2];
document.getElementById('obsth').textContent = this.responseText.split("\n")[8].split("=")[1].split(',')[3];
}
};
xhr.open('GET', url);
xhr.send();
}
obsStars('./Website.properties');
</script>
<!-- The next 4 JS populate the images and references for the above stars-->
<script>
function popStar0(url) {
var xhr = new XMLHttpRequest();
xhr.onload = function () {
document.getElementById('starZ').src = "./img/"+this.responseText.split("\n")[8].split("=")[1].split(',')[0].split(' ').join('_')+".jpg";
document.getElementById('starZa').href = "https://en.wikipedia.org/wiki/"+this.responseText.split("\n")[8].split("=")[1].split(',')[0].split(' ').join('_');
};
xhr.open('GET', url);
xhr.send();
}
popStar0('./Website.properties');
</script>
<script>
function popStar1(url) {
var xhr = new XMLHttpRequest();
xhr.onload = function () {
document.getElementById('starO').src = "./img/"+this.responseText.split("\n")[8].split("=")[1].split(',')[1].split(' ').join('_')+".jpg";
document.getElementById('starOa').href="https://en.wikipedia.org/wiki/"+this.responseText.split("\n")[8].split("=")[1].split(',')[1].split(' ').join('_');
};
xhr.open('GET', url);
xhr.send();
}
popStar1('./Website.properties');
</script>
<script>
function popStar2(url) {
var xhr = new XMLHttpRequest();
xhr.onload = function () {
document.getElementById('starTw').src = "./img/"+this.responseText.split("\n")[8].split("=")[1].split(',')[2].split(' ').join('_')+".jpg";
document.getElementById('starTwa').href="https://en.wikipedia.org/wiki/"+this.responseText.split("\n")[8].split("=")[1].split(',')[2].split(' ').join('_');
};
xhr.open('GET', url);
xhr.send();
}
popStar2('./Website.properties');
</script>
<script>
function popStar3(url) {
var xhr = new XMLHttpRequest();
xhr.onload = function () {
document.getElementById('starTh').src = "./img/"+this.responseText.split("\n")[8].split("=")[1].split(',')[3].split(' ').join('_')+".jpg";
document.getElementById('starTha').href="https://en.wikipedia.org/wiki/"+this.responseText.split("\n")[8].split("=")[1].split(',')[3].split(' ').join('_');
};
xhr.open('GET', url);
xhr.send();
}
popStar3('./Website.properties');
</script>
<!-- Gives the Name of the upcoming schedule -->
<script>
function timelineSched(url) {
var xhr = new XMLHttpRequest();
xhr.onload = function () {
if (this.responseText.split("\n")[0]){
document.getElementById('dateschedule').textContent = this.responseText.split("\n")[11].split("=")[1];
}
};
xhr.open('GET', url);
xhr.send();
}
timelineSched('./Website.properties');
</script>
<!-- Gives the Name of the upcoming Months-->
<script>
function timelineSched(url) {
var xhr = new XMLHttpRequest();
xhr.onload = function () {
if (this.responseText.split("\n")[0]){
document.getElementById('monthOneN').textContent = this.responseText.split("\n")[0].split("=")[0];
document.getElementById('monthTwoN').textContent = this.responseText.split("\n")[1].split("=")[0];
document.getElementById('monthThrN').textContent = this.responseText.split("\n")[2].split("=")[0];
document.getElementById('monthFouN').textContent = this.responseText.split("\n")[3].split("=")[0];
document.getElementById('monthFivN').textContent = this.responseText.split("\n")[4].split("=")[0];
document.getElementById('monthSixN').textContent = this.responseText.split("\n")[5].split("=")[0];
}
};
xhr.open('GET', url);
xhr.send();
}
timelineSched('./currentschedule.properties');
</script>
<!-- Gives the Dates of the upcoming Months-->
<script>
function timelineSched(url) {
var xhr = new XMLHttpRequest();
xhr.onload = function () {
if (this.responseText.split("\n")[0]){
document.getElementById('monthOneD').innerHTML = this.responseText.split("\n")[0].split("=")[1].split(',').join('<br>');
document.getElementById('monthTwoD').innerHTML = this.responseText.split("\n")[1].split("=")[1].split(',').join('<br>');
document.getElementById('monthThrD').innerHTML = this.responseText.split("\n")[2].split("=")[1].split(',').join('<br>');
document.getElementById('monthFouD').innerHTML = this.responseText.split("\n")[3].split("=")[1].split(',').join('<br>');
document.getElementById('monthFivD').innerHTML = this.responseText.split("\n")[4].split("=")[1].split(',').join('<br>');
document.getElementById('monthSixD').innerHTML = this.responseText.split("\n")[5].split("=")[1].split(',').join('<br>');
}
};
xhr.open('GET', url);
xhr.send();
}
timelineSched('./currentschedule.properties');
</script>
</body>
</html>
<!--#############-->
<!-- End of Code -->