-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCosmicWonder_EN.html
executable file
·41 lines (34 loc) · 1.91 KB
/
CosmicWonder_EN.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<link rel="stylesheet" type = "text/css" href = "style.css" />
<title>Subtitles</title>
<script type="text/javascript" src="CosmicWonder.json"></script>
<script type="text/javascript" src="config.json"></script>
<script type="text/javascript" src="displaySubtitles.js"></script>
</head>
<body>
<div id = "text">
<h1>Cosmic Wonder Introduction</h1>
<p>Welcome to the Granger Sky Theater at the Adler Planetarium. I'm glad you were able to join us for today's presentation of Cosmic Wonder. </p>
<p>Did you get that penny when you entered the theater? Good. It is my gift to you - don't spend it all in one place. Seriously, though, hold on to it. We will use it during the show. And we hope you'll keep it as a souvenir to remember this experience.</p>
<p>Throughout time humans have engaged with the cosmos through an ongoing cycle of wonder, observation and discovery. It is a cyclical process that allows us to learn from the past, and push toward the frontiers of tomorrow.</p>
<p>We will explore the story of Cosmic Wonder, with some of the same software used by astronomers, the World Wide Telescope, developed by Microsoft Research. We will turn this theatre into a virtual observatory, one that can pull in and stitch together the best imagery from telescopes across the globe as well as in orbit above it.</p>
<p>Along with the most modern concepts we'll also explore historical ideas, assisted by images from the Adler's collections.</p>
<div id = "buttonPreamble">
</div>
<p>
<button id = "startButton" type = "button" onclick = "startSubtitles()">Start Subtitling</button>
</p>
</div>
<div id = "buttonPostamble">
</div>
<script>
document.getElementById("text").style.color = textColor;
document.getElementById("text").style.fontSize = textSize;
document.body.style.background = backgroundColor;
document.getElementById("text").style.fontFamily = font;
</script>
</body>
</html>