-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
55 lines (47 loc) · 1.98 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
<html>
<head>
<title>y3d playground</title>
<script src="http://cdn.alloyui.com/2.0.x/aui/aui-min.js"></script>
<script src="./build/y3d/y3d.js"></script>
<script src="./examples/js/dat.gui.min.js"></script>
<link href="http://cdn.alloyui.com/2.0.x/aui-css/css/bootstrap.css" rel="stylesheet">
<link href="./examples/css/playground.css" rel="stylesheet">
</head>
<body>
<div class="container-fluid">
<div class="row row-fluid">
<div class="span6">
<canvas id='y3d'></canvas>
</div>
<div id="right" class="span6">
<div id="editor"></div>
<span id="examples"></span>
<span id="save"></span>
<span id="run" class="btn-primary"></span>
<span id="reset" class="btn-danger"></span>
</div>
</div>
</div>
<div id="controls" class="dg ac"></div>
<div id="examples-menu" class="dropdown">
<ul class="dropdown-menu" role="menu" aria-labelledby="dLabel">
<li><input id="load-url" type="text" placeholder="Gist's URL goes here" /></li>
<li class="divider"></li>
<li><a class="example" href="https://gist.github.com/brunofarache/5819876">Controls</a></li>
<li><a class="example" href="https://gist.github.com/brunofarache/5853591">Animation and textures</a></li>
<li><a class="example" href="https://gist.github.com/brunofarache/6228194">Teapot</a></li>
<li><a class="example" href="https://gist.github.com/brunofarache/5855622">Interactions</a></li>
<li><a class="example" href="https://gist.github.com/brunofarache/5819929">YUI Gallery</a></li>
</ul>
</div>
<script src="./examples/js/playground.js"></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-41821130-1', 'brunofarache.github.io');
ga('send', 'pageview');
</script>
</body>
</html>