-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
49 lines (47 loc) · 1.81 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>JsBP Chrome Experiment · nucular</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,700,400italic&subset=latin-ext">
<link type="text/css" rel="stylesheet" href="3rd/octicons/octicons.css">
<link type="text/css" rel="stylesheet" href="style.css">
<script type="text/javascript" src="3rd/jquery-1.9.1.min.js"></script>
<script type="text/javascript" src="jsbp.min.js"></script>
</head>
<body>
<div id="wrapper">
<div id="content">
<div id="left" class="side">
</div>
<div id="right" class="side">
<h3>Demos</h3>
<a>Audio Test</a><br/>
<a>Inverted Sine</a><br/>
<a>Keyboard Test</a><br/>
<a>Logo</a><br/>
<a>Munching Squares</a><br/>
<a>Nyan Cat</a><br/>
<a>Palette Test</a><br/>
<a>Sine Scroller</a><br/>
<a>Sprite Test</a><br/>
</div>
<div id="middle">
<h1>JsBP</h1>
<div id="canvas-wrapper">
<canvas id="canvas" width="256" height="256">
</canvas>
<span id="pause" class="mega-octicon octicon-playback-pause"></span>
<div id="overlay">
<span id="overlay-text"></span><br/>
<span id="overlay-icon" class="mega-octicon octicon-file-binary"></span>
</div>
</div>
</div>
</div>
</div>
<footer>
by <a href="http://nucular.github.io">nucular</a>
<a href="https://github.com/nucular/JsBP" class="mega-octicon octicon-mark-github"></a>
</footer>
</body>
</html>