-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
59 lines (50 loc) · 1.32 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
58
59
<!doctype html>
<html>
<title>Procedural Plant | feiss.be</title>
<link href='http://fonts.googleapis.com/css?family=Open+Sans' rel='stylesheet' type='text/css'>
<style>
body {
margin: 0; overflow: hidden; background: #111;
font: 11px 'Open Sans', sans-serif;
color: #aaa;
}
#a{
position: absolute;
z-index: 999;
background-color: #111;
width: 210px;
padding: 1em;
margin: 1em;
text-align: center;
}
h2{
margin: 0;
font-weight: normal;
}
a{
color: #7af;
}
</style>
<body>
<div id="a">
<h2>Procedural Plant</h2>
<p>A toy by @feiss <a href="http://feiss.be">http://feiss.be</a></p>
<p>Rendered with <a href="http://playgroundjs.com" target="_blank">Playground</a></p>
<p><a href="https://github.com/feiss/grow">GitHub</a></p>
<p>Click on page to refresh.</p>
</div>
<script src="script/lib/playground.js"></script>
<script src="script/Game.js"></script>
<script src="script/Main.js"></script>
<script src="script/dat.gui.min.js"></script>
<script>
var _gaq = [['_setAccount', 'UA-5753152-1'], ['_trackPageview']];
(function(d, t) {
var g = d.createElement(t),
s = d.getElementsByTagName(t)[0];
g.src = '//www.google-analytics.com/ga.js';
s.parentNode.insertBefore(g, s);
}(document, 'script'));
</script>
</body>
</html>