-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathindex.html
35 lines (34 loc) · 887 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
33
34
35
<!DOCTYPE html>
<html>
<head>
<style type="text/css">
body {
margin: 0px;
padding: 0px;
position: fixed;
}
form #controls {
position: absolute;
top: 2px;
left: 2px;
}
#inputbox {
width:390;
}
</style>
</head>
<body>
<FORM NAME="form" ACTION="" METHOD="GET">
<div id="controls">
<INPUT id="inputbox" TYPE="text" NAME="inputbox" VALUE=""><br>
<INPUT TYPE="button" NAME="button" Value="Plot"
onClick="plotButtonClicked(this.form.inputbox.value)">
<INPUT TYPE="button" NAME="button" Value="Share"
onClick="shareButtonClicked()">
</div>
</FORM>
<canvas id="canvas" width="400" height="400" />
<script src="../../lib/requestAnimFrame.js"></script>
<script src="script.js"></script>
</body>
</html>