-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
32 lines (32 loc) · 1.05 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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="style.css" />
<meta charset="utf-8" />
</head>
<body>
<div class="container" id="title">
<h1>Fourier Transform</h1>
</div>
<div class="container"></div>
<br />
<div
class="container"
id="sawtooth"
style="position: relative; left: -6vw"
>
<p id="slider-value" style="display: inline-block"></p>
<p id="slider" style="display: inline-block"></p>
<script src="./p5/p5.js"></script>
<script src="./complex-number.js"></script>
<script src="./discrete-fourier-transform.js"></script>
<script src="./functions.js"></script>
<script src="./batman.js"></script>
<script src="./ft-drawing.js"></script>
</div>
<br />
<div class="container" id="batman"></div>
<br />
<div class="container" id="user" style="touch-action: none"></div>
</body>
</html>