-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathode-to-waves.html
210 lines (203 loc) · 7.41 KB
/
ode-to-waves.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" >
<meta
name="viewport"
content="width=device-width, initial-scale=1.0" >
<meta
name="description"
content="What's most amazing about waves is that a wave generally behaves like any other kind of wave. Further, it seems that waves are the language of energy and information. Are waves the fundamental language of the quantum computer that is the Universe?" >
<title>∿∿∿ Ode To Waves ∿∿∿</title>
<link
rel="stylesheet"
href="css/bootstrap.min.css" >
<link
rel="stylesheet"
href="css/index.css" >
<link
rel="stylesheet"
href="css/harmonics.css" >
<!-- favicon -->
<link
rel="apple-touch-icon"
sizes="180x180"
href="favicon/apple-touch-icon.png" >
<link
rel="icon"
type="image/png"
sizes="32x32"
href="favicon/favicon-32x32.png" >
<link
rel="icon"
type="image/png"
sizes="16x16"
href="favicon/favicon-16x16.png" >
<link
rel="manifest"
href="favicon/site.webmanifest" >
<link
rel="mask-icon"
href="favicon/safari-pinned-tab.svg"
color="#5bbad5" >
<link
rel="shortcut icon"
href="favicon/favicon.ico" >
<meta
name="msapplication-TileColor"
content="#da532c" >
<meta
name="msapplication-config"
content="favicon/browserconfig.xml" >
<meta
name="theme-color"
content="#212121" >
</head>
<body>
<header>
<a
class="mx-3"
id="menu-button"
data-bs-toggle="offcanvas"
href="#offcanvasMenu"
role="button"
aria-controls="offcanvasMenu">
<img
class="ufo my-3"
style="max-width: 150px"
src="img/ufo.gif"
title="Jump to the Menu"
alt="A hovering, spinning flying saucer that is the Menu button." >
</a>
</header>
<div class="main gradient">
<!-- SOUND ANALOGS -->
<article class="row p-5 mx-auto">
<h1
class="font-monospace fs-5 fw-normal text-end text-white my-2 pl-2">
waves are waves
</h1>
<div class="ratio ratio-16x9">
<iframe
class="rounded-5"
src="https://www.youtube-nocookie.com/embed/DovunOxlY1k?start=1252"
title="AT&T Archives: Similarities of Wave Behavior (Bonus Edition)"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
allowfullscreen>
</iframe>
</div>
</article>
<div
class="position-relative"
style="height: 500px">
<div class="position-absolute bottom-0 end-0">
<figure>
<picture>
<source
srcset="img/alien-hi.webp"
type="image/webp" >
<img
src="img/alien-hi.gif"
alt="An alien walks onto screen to wave, then leaves." >
</picture>
<cite class="visually-hidden">
<a
href="https://giphy.com/stickers/TELYORGANICS-transparent-qlOso7alCUTiAX7aG5">
</a>
</cite>
</figure>
</div>
</div>
</div>
<footer>
<section class="site-author">
Created by
<a
href="https://github.com/its-all-waves"
target="_blank"
>Ian Painter</a
>
for
<a
href="https://cs50.harvard.edu/x/"
target="_blank"
>Harvard cs50x</a
>
•
<a
href="https://cs50.harvard.edu/x/2023"
target="_blank"
>2023</a
>
•
<a
href="https://cs50.harvard.edu/x/2023/weeks/8/"
target="_blank"
>week 8</a
>
•
<a
href="https://cs50.harvard.edu/x/2023/psets/8/homepage/"
target="_blank"
><code>homepage</code></a
>.
</section>
</footer>
<!-- OFFCANVAS MENU // SHOW CLASS ADDED FOR DEBUGGING -- REMOVE LATER -->
<nav
class="offcanvas offcanvas-top"
tabindex="-1"
id="offcanvasMenu"
data-bs-theme="dark">
<div
id="offcanvas-content"
class="overflow-auto">
<!-- HOME BUTTON -->
<div id="wave-buttons-container">
<a href="index.html">
<img
class="ufo mb-4"
style="width: 100%"
src="img/ufo.gif"
title="Jump Home"
alt="Home button." >
</a>
<!-- RED WAVE -->
<a href="harmonics.html">
<img
id="red-wave"
class="m-4"
src="img/2nd-harmonic_alt.svg"
title="2nd harmonic"
alt="The 2nd harmonic. A wave of 1 cycle." >
</a>
<!-- GREEN WAVE -->
<a href="sound-and-matter.html">
<img
id="green-wave"
class="m-4"
src="img/3rd-harmonic_alt.svg"
title="3rd harmonic"
alt="The 3rd harmonic. A wave of 2 cycles." >
</a>
<!-- BLUE WAVE -->
<a href="ode-to-waves.html">
<img
id="blue-wave"
class="m-4"
src="img/4th-harmonic_alt.svg"
title="4th harmonic"
alt="The 4th harmonic. A wave of 3 cycles." >
</a>
</div>
</div>
<!-- BACKGROUND - FLYING THRU STARS -->
<canvas id="field"></canvas>
</nav>
<!-- END OFFCANVAS MENU -->
<!-- <script src="js/popper.min.js"></script> -->
<script src="js/bootstrap.min.js"></script>
<script src="js/stars.js"></script>
<script src="js/thejs.js"></script>
</body>
</html>