-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
86 lines (83 loc) · 3.84 KB
/
index.html
File metadata and controls
86 lines (83 loc) · 3.84 KB
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<!DOCTYPE html>
<html lang="en">
<head>
<title>Nibble</title>
<link rel="stylesheet" href="css/bootstrap.min.css" type="text/css" />
</head>
<body>
<div class="container" style="width:940px;">
<div class="row">
<a id="nibble" href="#" rel="tooltip">
<img src="img/nibble.png" style="width:128px;" />
</a>
</div>
<div class="well">
<div class="row">
<form class="form-inline" role="form">
<div class="form-group col-xs-10">
<input class="ft1 form-control" type="text" placeholder="f(t,i)" value="i | t">
</div>
<div class="btn-group col-xs-2">
<button type="button" id="ft1Play" class="btn btn-primary">
<span class="glyphicon glyphicon-play"></span>
</button>
<button type="button" id="ft1Pause" class="btn btn-primary">
<span class="glyphicon glyphicon-stop"></span>
</button>
</div>
</form>
</div>
<div class="row">
<div class="col-xs-12">
<a id="abs" href="#" rel="tooltip">abs</a> |
<a id="exp" href="#" rel="tooltip">exp</a> |
<a id="round" href="#" rel="tooltip">round</a> |
<a id="sqrt" href="#" rel="tooltip">sqrt</a> |
<a id="sin" href="#" rel="tooltip">sin</a> |
<a id="cos" href="#" rel="tooltip">cos</a> |
<a id="tan" href="#" rel="tooltip">tan</a> |
<a id="floor" href="#" rel="tooltip">floor</a> |
<a id="log" href="#" rel="tooltip">log</a> |
<a id="PI" href="#" rel="tooltip">PI</a> |
<a id="E" href="#" rel="tooltip">E</a> |
<a id="lerp" href="#" rel="tooltip">lerp</a> |
<a id="clamp" href="#" rel="tooltip">clamp</a> |
<a id="normalize" href="#" rel="tooltip">normalize</a> |
<a id="map" href="#" rel="tooltip">map</a> |
<a id="gradient" href="#" rel="tooltip">gradient</a> |
<a id="simplexNoise" href="#" rel="tooltip">simplexNoise</a> |
<a id="signedNoise" href="#" rel="tooltip">signedNoise</a> |
<a id="outBuffer" href="#" rel="tooltip">outBuffer</a>
</div>
</div>
</div>
<div class="well">
<div id="viewport" style="height:300px; background-color:#000;">
<canvas id="wave"></canvas>
</div>
</div>
<div class="well">
<div id="xgui"></div>
</div>
</div>
<div id="audioError" class="modal hide fade" tabindex="-1" role="dialog" aria-labelledby="audioError" aria-hidden="true">
<div class="modal-header">
<h2>Unsupported Browser</h2>
</div>
<div class="modal-body">
<h3>Please install one of the following
<strong>Web Audio</strong>compatible browsers :</h3>
<div class="well">
<a href="https://www.google.com/intl/en/chrome/browser/">Google Chrome</a>
</div>
<div class="well">
<a href="http://www.apple.com/safari/">Safari 6</a>
</div>
</div>
</div>
<script type="text/javascript" src="js/jquery-3.1.1.min.js"></script>
<script type="text/javascript" src="js/bootstrap.min.js"></script>
<script type="text/javascript" src="js/xgui.min.js"></script>
<script type="text/javascript" src="js/nibble.js"></script>
</body>
</html>