-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
31 lines (28 loc) · 951 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
<!DOCTYPE html>
<html>
<body>
<canvas style="border:2px black solid;" id=graph width=640 height=480></canvas>
<form>
<div style="float:left;">
<fieldset id="axesmode">
<legend>Axes Angle</legend>
<label for="60-120">60 degrees</label>
<input type="radio" name="axesmode" id="60-120" checked />
<label for="120-240">120 degrees</label>
<input type="radio" name="axesmode" id="120-240"/>
</fieldset>
<label for="zoom">Zoom</label>
<input id="zoom" value="5"/>
<br/>
<label for="density">Pixels Per Point (density)</label>
<input id="density" value="10"/>
</div>
<label style="float:left;" for="function">Function</label>
<br/>
<textarea id="function" rows=5 cols=30></textarea>
<br/>
<button id="desenhar">Draw!</button>
</form>
<script src="js/big-js.js"></script>
</body>
</html>