-
Notifications
You must be signed in to change notification settings - Fork 15
/
index.html
53 lines (53 loc) · 2.6 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>CoffeeCollider</title>
<link rel="shortcut icon" id="favicon" href="./extras/img/pause.gif">
<link rel="stylesheet" href="./extras/css/index.css">
</head>
<body>
<div id="main"><div id="editor"></div></div>
<div id="panel">
<h1>CoffeeCollider</h1>
<h5 id="version">version</h5>
<canvas id="canvas"></canvas>
<div class="block">
<h3>Examples</h3>
<ul id="example-list">
<li><a href="#usage.coffee">usage</a></li>
<li><a href="#sequence.coffee">sequence</a></li>
<li><a href="#chord.coffee">chord</a></li>
<li><a href="#noise.coffee">noise</a></li>
<li><a href="#mouse.coffee">mouse</a></li>
<li><a href="#keyboard.coffee">keyboard</a></li>
</ul>
</div>
<div class="block">
<h3>Project</h3>
<ul>
<li><a href="https://github.com/mohayonao/CoffeeCollider">GitHub</a></li>
<li><a href="https://github.com/mohayonao/CoffeeCollider/wiki">Wiki</a></li>
<li><a href="https://github.com/mohayonao/CoffeeCollider/issues">Issues</a></li>
</ul>
</div>
<div class="block" style="white-space:nowrap">
<a href="https://twitter.com/share" class="twitter-share-button" data-url="http://mohayonao.github.io/CoffeeCollider/" data-hashtags="CoffeeCollider">Tweet</a>
<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+'://platform.twitter.com/widgets.js';fjs.parentNode.insertBefore(js,fjs);}}(document, 'script', 'twitter-wjs');</script> <iframe src="http://ghbtns.com/github-btn.html?user=mohayonao&repo=CoffeeCollider&type=watch&count=true" allowtransparency="true" frameborder="0" scrolling="0" width="100" height="20"></iframe>
</div>
</div>
<div id="keyboard"></div>
<button id="run" class="btn btn-primary">Run</button>
<button id="stop" class="btn btn-primary">Stop</button>
<button id="clear" class="btn">Clear</button>
<button id="link" class="btn">Link</button>
<script src="./extras/vendor/jquery-2.0.0.min.js"></script>
<script src="./extras/vendor/coffee-script.js"></script>
<script src="./extras/vendor/ace.js"></script>
<script src="./build/coffee-collider.js"></script>
<script src="./extras/js/waveviewer.js"></script>
<script src="./extras/js/keyboard.js"></script>
<script src="./extras/js/editor.js"></script>
<script src="./extras/js/index.js"></script>
</body>
</html>