-
Notifications
You must be signed in to change notification settings - Fork 18
/
index.html
107 lines (84 loc) · 4.1 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>2D differential growth experiments in JavaScript</title>
<meta name="description" content="Series of visual experiments in JavaScript exploring the topic of differential growth as a method for generating interesting 2D forms">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Facebook OG -->
<meta property="og:type" content="website">
<meta property="og:url" content="https://jasonwebb.github.io/2d-differential-growth-experiments/">
<meta property="og:title" content="2D differential growth experiments in JavaScript">
<meta property="og:image" content="social-media-preview.png">
<meta property="og:description" content="Series of visual experiments in JavaScript exploring the topic of differential growth as a method for generating interesting 2D forms">
<meta property="og:locale" content="en_US">
<meta property="og:image:width" content="1200">
<meta property="og:image:height" content="566">
<!-- Twitter card -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:creator" content="@jasonwebb">
<meta name="twitter:url" content="https://jasonwebb.github.io/2d-differential-growth-experiments/">
<meta name="twitter:title" content="2D differential growth experiments in JavaScript">
<meta name="twitter:description" content="Series of visual experiments in JavaScript exploring the topic of differential growth as a method for generating interesting 2D forms">
<meta name="twitter:image" content="https://raw.githubusercontent.com/jasonwebb/2d-differential-growth-experiments/master/social-media-preview.png">
<link href="style.css" rel="stylesheet">
</head>
<body>
<main>
<h1>2D differential growth experiments</h1>
<a href="experiments/01%20-%20single%20line/" class="card" title="01 - single line">
<div class="overlay">
<div class="number">01</div>
single line
</div>
<img src="experiments/01%20-%20single%20line/images/01-line-after-growth.png" alt="01 - single line">
</a>
<a href="experiments/02%20-%20simple%20closed%20shape/" class="card" title="02 - simple closed shape">
<div class="overlay">
<div class="number">02</div>
simple closed shape
</div>
<img src="experiments/02%20-%20simple%20closed%20shape/images/02-triangle-growth-5s.png" alt="02 - simple closed shape">
</a>
<a href="experiments/03%20-%20multiple%20shapes/" class="card" title="03 - multiple shapes">
<div class="overlay">
<div class="number">03</div>
multiple shapes
</div>
<img src="experiments/03%20-%20multiple%20shapes/images/03-growth-after-5s.png" alt="03 - multiple shapes">
</a>
<a href="experiments/04%20-%20SVG%20as%20input/" class="card" title="04 - SVG as input">
<div class="overlay">
<div class="number">04</div>
SVG as input
</div>
<img src="experiments/04%20-%20SVG%20as%20input/images/04-hello-world-after-3s.png" alt="04 - SVG as input">
</a>
<a href="experiments/05%20-%20line%20studies/" class="card" title="05 - line studies">
<div class="overlay">
<div class="number">05</div>
line studies
</div>
<img src="experiments/05%20-%20line%20studies/images/05-circle-trace.png" alt="05 - line studies">
</a>
<a href="experiments/06%20-%20shape%20studies/" class="card" title="06 - shape studies">
<div class="overlay">
<div class="number">06</div>
shape studies
</div>
<img src="experiments/06%20-%20shape%20studies/images/phyllotaxis.png" alt="06 - shape studies">
</a>
<a href="experiments/07%20-%20bounds/" class="card" title="07 - bounds">
<div class="overlay">
<div class="number">07</div>
bounds
</div>
<img src="experiments/07%20-%20bounds/images/circle.png" alt="07 - bounds">
</a>
<a href="experiments/playground" class="card playground" title="Playground - coming soon!">
Playground
</a>
</main>
</body>
</html>