forked from dp50mm/chaos-theory-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
31 lines (31 loc) · 1.01 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
<!DOCTYPE html>
<html>
<head>
<title>index</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script src="//d3js.org/d3.v3.min.js" charset="utf-8"></script>
<script src='https://cdnjs.cloudflare.com/ajax/libs/three.js/r73/three.js'></script>
<script>
$(document).ready(function() {
var svg = d3.select('.svg-container').append('svg')
.attr('width','800px')
.attr('height','600px');
svg.append('rect').attr('x','100px')
.attr('y','100px')
.attr('width','20px')
.attr('height','20px');
});
</script>
</head>
<body>
<h1>Chaos theory workshop examples</h1>
<ul>
<li><a href='game_of_life.html'>Game of life</a></li>
<li><a href='strange_attractor.html'>Strange attractor</a></li>
<li><a href='super_formula.html'>Superformula</a></li>
<li><a href='rule30.html'>Rule 30</a></li>
</ul>
<div class='svg-container'>
</div>
</body>
</html>