-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
57 lines (53 loc) · 2.2 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
55
56
57
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Circular Graph</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
<!-- Optional theme -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap-theme.min.css">
<link rel="stylesheet" href="style.css">
<style type="text/css">
</style>
</head>
<body class="container noselect">
<div class="text-center">
<div ><a class="label label-primary" href="http://8holon.github.io/">8holon.github.io</a></div>
<h1>Circular Multiplication Graph</h1>
<div class="col-lg-6 col-lg-offset-3">
<span class='inline-block' >
<input id='displayPoints' type="checkbox" class='hand-cursor'/>
<label for='displayPoints' class='hand-cursor' >Display points</label>
</span>
<span class='inline-block' >
<input id='animateCheckbox' type="checkbox" class='hand-cursor' />
<label for='animateCheckbox' class='hand-cursor' >Animate</label>
</span>
<span class='inline-block' >
<input id='spiralModeCheckbox' type="checkbox" class='hand-cursor' />
<label for='spiralModeCheckbox' class='hand-cursor' >Spiral Mode</label>
</span>
</div>
<canvas id="GraphCanvas" width="305" height="305" >
Your browser does not support the HTML5 canvas tag.
</canvas>
<div class="col-lg-6 col-lg-offset-3">
<label>Cardinality : </label>
<input id='pointsNumber' type="number" style="width:70px;"/>
<input id="cardinalityRange" type="range" min="0" max="500" step="1" />
</div>
<div class="col-lg-6 col-lg-offset-3">
<label>Coefficient : </label>
<input id='coeffNumber' type="number" max="250" step="0.01" style="width:70px;"/>
<input id="coeffRange" type="range" min="0" max="250" step="1" />
</div>
</div>
<script type="text/javascript" src="CircularGraph.js"></script>
<script type="text/javascript" src="script.js"></script>
<script type="text/javascript">
</script>
</body>
</html>