-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
54 lines (52 loc) · 1.72 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="styles.css" />
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<title>Pendulum</title>
</head>
<body id="screen" class="dark">
<div style="position: absolute">
<div class="button-grp">
<div class="btn btn-outline-warning" id="theme">
Light
</div>
<div class="btn btn-outline-warning" id="show">
Show
</div>
</div>
<div class="link-grp">
<div class="btn btn-outline-warning" id="github">
<a style="color: inherit; text-decoration:none" href="https://github.com/4D17Y4/Chaos">
<\>
</a>
</div>
</div>
<!-- <label class="toggle theme">
<input type="checkbox" />
<span class="switch"></span>
<p>Dark</p>
<p>Light</p>
</label>
<label class="toggle show">
<input type="checkbox" />
<span class="switch"></span>
<p>Hide</p>
<p>Show</p>
</label>
</div>
<label class="toggle gravity">
<input type="checkbox" />
<span class="switch"></span>
<p>Down</p>
<p>Rand</p>
</label> -->
<canvas id="canvas"></canvas>
</body>
<script src="scripts/bob.js"></script>
<script src="scripts/doublePendulum.js"></script>
<script src="scripts/script.js"></script>
</html>