-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
51 lines (48 loc) · 1.9 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
<!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">
<title>Pole Zero Response Plotter</title>
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
<script src="https://cdn.jsdelivr.net/npm/chartjs-plugin-dragdata@2.2.3/dist/chartjs-plugin-dragdata.min.js"></script>
<link rel="stylesheet" href="./main/button.css">
<link rel="stylesheet" href="./main/checkbox.css">
<link rel="stylesheet" href="./main/combobax.css">
<link rel="stylesheet" href="./main/style.css">
<script src="./main/main.js" async></script>
</head>
<body>
<div id="container">
<div id="plot">
<canvas id="plotChart"></canvas>
</div>
<div id="result">
<canvas id="resultChart"></canvas>
</div>
<div id="clear-op">
<button id="clear-button" class="btn">Clear all</button>
<label class="checkbox">Delete by click
<input id="deleting-clicks" type="checkbox">
<span class="checkmark"></span>
</label>
</div>
<div id="plane-response-type">
<button id="update-button" class="btn">Update</button>
<div id="response-box" class="combobox">
<select id="response-select">
<option value="magnitude">Magnitude Response</option>
<option value="phase">Phase Response</option>
</select>
</div>
<div id="plane-box" class="combobox">
<select id="plane-select">
<option value="s-plane">s-plane</option>
<option value="z-plane">z-plane</option>
</select>
</div>
</div>
</div>
</body>
</html>