-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·125 lines (119 loc) · 4.15 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
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
<!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" />
<meta
http-equiv="Cache-Control"
content="no-cache, no-store, must-revalidate"
/>
<meta http-equiv="Pragma" content="no-cache" />
<meta http-equiv="Expires" content="0" />
<title>Particles by Artin Zareie</title>
<link rel="stylesheet" href="./styles/styles.css" />
</head>
<body>
<section class="data-section">
<div class="data-context">
<h1 class="title">Particles by Artin Zareie</h1>
<div class="records">
<form action="javascript:void(0)">
<h3>Particles Data</h3>
<table class="record">
<thead>
<tr>
<th>Particle ID</th>
<th>Charge</th>
<th>Position</th>
<th>Fixed</th>
</tr>
</thead>
<tr id="rec_1">
<td>
<p>#1</p>
</td>
<td>
<input value="2e-3" name="charge" type="number" />
</td>
<td>
<label for="">x: </label>
<input value="0" name="x" style="width: 4vw" type="number" />
<label for="">y: </label>
<input value="0" name="y" style="width: 4vw" type="number" class="" />
<label for="">z: </label>
<input value="0" name="z" style="width: 4vw" type="number" class="" />
</td>
<td>
<input type="checkbox" name="fixed">
</td>
</tr>
<tr id="rec_2">
<td>
<p>#2</p>
</td>
<td>
<input value="-2e-4" name="charge" type="number" />
</td>
<td>
<label for="">x: </label>
<input value="10" style="width: 4vw" name="x" type="number" />
<label for="">y: </label>
<input value="5" style="width: 4vw" name="y" type="number" class="" />
<label for="">z: </label>
<input value="0" name="z" style="width: 4vw" type="number" class="" />
</td>
<td>
<input type="checkbox" name="fixed">
</td>
</tr>
<!-- <tr id="3">
<td>
<p>#3</p>
</td>
<td>
<input value="1e-8" name="charge" type="number" />
</td>
<td>
<label for="">x: </label>
<input value="10" style="width: 4vw" name="x" type="number" />
<label for="">y: </label>
<input value="5" style="width: 4vw" name="y" type="number" class="" />
<label for="">z: </label>
<input value="-6" name="z" style="width: 4vw" type="number" class="" />
</td>
</tr> -->
<tfoot>
<tr>
<td></td>
<th>
<label for="remover">Removing ID</label>
</th>
<td></td>
<td></td>
</tr>
<tr style="width: 100%; background-color: red">
<td>
<button id="add_rec">Add Record</button>
</td>
<td>
<input type="number" name="" id="remover" />
</td>
<td>
<button id="rem_rec">Remove Selected Record</button>
</td>
<td>
<button class="animate">Animate</button>
</td>
</tr>
</tfoot>
</table>
</form>
</div>
</div>
</section>
<section class="canvas-section">
</section>
<script src="./dist/bundle.js"></script>
</body>
</html>