-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
58 lines (53 loc) · 1.24 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
<html>
<head>
<title>ES 647 - PRML</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/github-fork-ribbon-css/0.2.2/gh-fork-ribbon.min.css" />
</head>
<body>
<div id="grid1">
<svg width="600px" height="600px">
</div>
<div id="grid2">
<svg width="600px" height="600px">
<marker id="triangle"
viewBox="0 0 10 10" refX="0" refY="5"
markerUnits="strokeWidth"
markerWidth="4" markerHeight="4"
orient="auto">
<path d="M 0 0 L 10 5 L 0 10 z" />
</marker>
</div>
<div class = "two">
<button style="margin-left: 2%;" id="btn" class="update">
Policy Evaluation (one go)
</button>
<br>
<button style="margin-left: 2%;" id="btn" class="iterate">
Iterative Policy Evaluation
</button>
</div>
</body>
<a class="github-fork-ribbon" href="https://github.com/arikpamnani/gridworld-demo" data-ribbon="Fork me on GitHub" title="Fork me on GitHub">Fork me on GitHub</a>
<script src = "https://d3js.org/d3.v4.min.js"></script>
<script type="text/javascript" src="maingrid.js"></script>
<style>
#grid1{
width: 37%;
height: 100%;
float: left;
}
#grid2{
width:37%;
height: 100%;
float: left;
}
.two{
width: 26%;
height: 100%;
float: left;
}
#btn{
margin-top: 5%;
}
</style>
</html>