-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
57 lines (54 loc) · 2.1 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
55
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title> Circle Simulation</title>
<link rel="stylesheet" href="./style.css">
</head>
<body id="mainBody">
<canvas id="canvas" width="700" height="700"></canvas>
<div id="container">
<div class="button-group">
<button id="startButton" class="button-Group1">startButton</button>
<button id="restartButton" class="button-Group1">restartButton</button>
<button id="pauseButton" class="button-Group1">Pause/Play</button>
<div class="boxed">
<p class="p1">Number of Particles</p>
<div class="justify">
<input
id="cloneInput"
class="grow"
type="number"
inputmode="numeric"
placeholder="input"
min="1"
max="10000"
value="10"
style="text-align: center;">
</input>
<button id="cloneButton">submit</button>
</div>
</div>
<div class="boxed">
<p class="p1">
Speed of Particles
</p>
<div class="justify">
<input
id="speedInput"
class="grow"
type="number"
inputmode="numeric"
placeholder="input"
min="1"
max="10000"
value="10"
style="text-align: center;">
</input>
</div>
</div>
</div>
</div>
</body>
<script src="./Simulation.js"></script>
</html>