-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
38 lines (37 loc) · 1.06 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Newtonian Gravity Sim</title>
<!-- <link rel="stylesheet" href="style.css"> -->
</head>
<body id="main">
<div id="info-container">
<button id="hide-info-button">
<p>TOGGLE PLANET INFO</p>
</button>
<div id="instructions">
<p>Click to create a planet</p>
<p>Click, drag, and release to create a planet with motion</p>
</div>
</div>
<!-- <div id="planet-form">
<h1>Planet Builder</h1>
<input type="text" id="name" placeholder="name"></input>
<br>
<input type="number" id="radius" placeholder="radius (km2)"></input><span>km2</span>
<br>
<input type="text" id="elements" placeholder="element"></input>
<br>
<button id="add-element-button">
<p>Add Element</p>
</button>
<div id="element-list"></div>
</div> -->
<canvas id="canvas">
</canvas>
<div id="planet-info-table"></div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script src="bundle.js"></script>
</body>
</html>