forked from cibotech/evilplot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
32 lines (31 loc) · 876 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<title>Evil Plot!</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<link href="https://fonts.googleapis.com/css?family=Lato" rel="stylesheet">
<style>
body{
margin: 0px
}
canvas{
position: relative;
top: 0px; right: 0px; bottom: 0px; left: 0px;
}
</style>
</head>
<body>
<div>
<canvas id="canvas" width="255" height="255"></canvas>
</div>
<div>
<canvas id="measureBuffer" width="255" height="255" hidden="true"></canvas>
</div>
<div id="palette"></div>
<script type="text/javascript" src="/workbench.js"></script>
<script type="text/javascript" src="js/target/scala-2.12/evilplot-fastopt.js"></script>
<script>
EvilPlot.renderExample("canvas");
</script>
</body>
</html>