-
Notifications
You must be signed in to change notification settings - Fork 0
/
apsf.html
66 lines (50 loc) · 1.08 KB
/
apsf.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
<!DOCTYPE html>
<meta charset="utf-8">
<style>
body {
font: 10px sans-serif;
}
.axis path,
.axis line {
fill: none;
stroke: #000;
shape-rendering: crispEdges;
}
.line {
fill: none;
stroke: steelblue;
stroke-width: 2.5px;
}
</style>
<head>
<script src="js/jquery-1.10.2.js"></script>
<script src="js/jquery-ui-1.10.4.custom.js"></script>
<link rel="stylesheet" href="css/jquery-ui-1.10.4.custom.css">
<style>
#param-T, #param-q, #param-M {
width: 300px;
margin: 15px;
}
</style>
<script src="js/d3.v3.min.js"></script>
<script src="js/lichtenberg.js"></script>
</head>
<body>
<script src="js/plots.js"></script>
<p>
<label for="T">T:</label>
<input type="text" id="T" style="border:0; color:#f6931f; font-weight:bold;">
</p>
<div id="param-T"></div>
<p>
<label for="q">q:</label>
<input type="text" id="q" style="border:0; color:#f6931f; font-weight:bold;">
</p>
<div id="param-q"></div>
<p>
<label for="M">M:</label>
<input type="text" id="M" style="border:0; color:#f6931f; font-weight:bold;">
</p>
<div id="param-M"></div>
</body>
</html>