-
Notifications
You must be signed in to change notification settings - Fork 0
/
smith.html
54 lines (51 loc) · 1.55 KB
/
smith.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
<html>
<head>
<meta charset="UTF-8">
<style>
#smith {
margin: 40px;
}
</style>
</head>
<body>
<form action="">
<input type="checkbox" id="impedance" checked>Impedance </input>
<input type="checkbox" id="admittance" >Admittance</input>
<input type="checkbox" id="constantQ" >Constant Q</input>
<input type="checkbox" id="constantSwr" >Constant SWR</input>
<input type="file" id="file"/>
</form>
<div style="display: absolute; float: right">
<p>
<div>Cursor:</div>
<div id="cur-ref-co"></div>
<div id="cur-imp"></div>
<div id="cur-imp-pol"></div>
<div id="cur-adm"></div>
<div id="cur-adm-pol"></div>
<div id="cur-swr"></div>
<div id="cur-ret-loss"></div>
<div id="cur-mis-loss"></div>
<div id="cur-q"></div>
</p>
<p>
<div>Marker:</div>
<div id="mark-freq"></div>
<div id="mark-ref-co"></div>
<div id="mark-imp"></div>
<div id="mark-imp-pol"></div>
<div id="mark-adm"></div>
<div id="mark-adm-pol"></div>
<div id="mark-swr"></div>
<div id="mark-ret-loss"></div>
<div id="mark-mis-loss"></div>
<div id="mark-q"></div>
<div id="mark-comp-val"></div>
</p>
</div>
<div style="border: 1px solid black; width: 600px; height: 600px" id="smith"></div>
<script src="jquery.min.js"></script>
<script src="d3.min.js"></script>
<script src="smith.js"></script>
</body>
</html>