-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
65 lines (59 loc) · 1.62 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
<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<title>Area Fill</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="uPlot.min.css" />
<link rel="stylesheet" href="main.css" />
</head>
<body>
<div class="row">
<div>Standard Error</div>
<div>
<input
id="se-input"
class="slider"
type="range"
min="0.1"
max="2"
step="0.01"
value="1"
/>
</div>
<div id="se-display">
</div>
</div>
<div class="row">
<div>True Effect Size</div>
<div>
<input
id="delta-input"
class="slider"
type="range"
min="0.0"
max="6"
step="0.1"
value="2"
/>
</div>
<div id="delta-display">
</div>
</div>
<div class="row">
<div>Power</div>
<div id="power-display"></div>
</div>
<div class="row">
<div>Fix power</div>
<div>
<input id="fixpower" type="checkbox" />
</div>
</div>
<div id="chart-container">
<div id="chart"></div>
</div>
<script src="uPlot.iife.min.js"></script>
<script src="main.js"></script>
</body>
</html>