-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
43 lines (42 loc) · 1.65 KB
/
Copy pathindex.html
File metadata and controls
43 lines (42 loc) · 1.65 KB
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
<html>
<head>
<link rel="stylesheet" href="index.css">
<link rel="stylesheet" href="inputrange.css">
<meta charset="utf-8"/>
<title>RWSTSim</title>
</head>
<body>
<div class="" id="plotRW"></div>
<div class = "container">
<div class = "one">
<div class = "alabeltext">a = <span class="avalue">2</span></div>
<input type="range" min="0" max="10" step="1" value="2" id ="a" autocomplete="off">
</div>
<div class = "three">
<div class="draw" id="draw">Play</div>
</div>
<div class = "two">
<div class = "blabeltext">b = <span class="bvalue">2</span></div>
<input type="range" min="0" max="10" step="1" value="2" id ="b" autocomplete="off">
</div>
</div>
<div class="" id="plotST"></div>
<div class = "container">
<div class = "one">
<div class = "alabeltext" >a = <span class="astvalue">2</span></div>
<input type="range" min="0" max="10" step="1" value="2" id ="ast" autocomplete="off">
</div>
<div class ="threest">
<div class="simulate" id="simulate1">Simulate one game</div>
<div class="simulate" id="simulate50">Simulate 50 games</div>
</div>
<div class = "two">
<div class = "blabeltext">b = <span class="bstvalue">2</span></div>
<input type="range" min="0" max="10" step="1" value="2" id ="bst" autocomplete="off">
</div>
</div>
<script src="inputrange.js"></script>
<script src="d3.v4.min.js"></script>
<script src="index.js"></script>
</body>
</html>