forked from jim-wolf-i-am/jim-wolf-i-am.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
101 lines (94 loc) · 4.88 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
<!DOCTYPE html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Jim Wolf</title>
<link rel="stylesheet" href="css/main.css">
</head>
<html>
<body>
<section>
<div class="wrapper">
<div class="flexrow">
<div class="col-12">
<h1>Hi, I’m Jim.</h1>
<h2>Welcome to my generative art experiments and musings.</h2>
<h3>Um, What Is This Stuff?</h3>
<p>This is where I post a few of the many generative art projects / experiments I’ve created.</p>
<p>These projects are more about my coding <em>creativity</em> rather than my coding <em>skills</em>. As such, if my code cleanliness (or lack thereof) horrifies you, just know these projects happened in a flurry of creativity, with the spirit of experimentation (and yes, my professional work does follow best practices for code cleanliness).</p>
<p>I justed wanted a way to share my passion projects with those who are curious about them :-)</p>
<p><strong>Are these projects mobile-friendly?</strong> On a tablet, yes. Not so much on a phone, but you are welcome to view them that way :-)</p>
</div>
</div>
</div>
</section>
<section>
<div class="wrapper">
<div class="flexrow">
<div class="col-12">
<h3> Pierre - Animated Bezier Curves</h3>
<p><span class="cta">See it in action here:</span> <a href="https://jim-wolf-i-am.github.io/pierre/" target="_blank">https://jim-wolf-i-am.github.io/pierre/</a></p>
</div>
<div class="col-4">
<img src="img/pierre-1.jpg" alt="brightly colored generative art">
</div>
<div class="col-4">
<img src="img/pierre-2.jpg" alt="brightly colored generative art">
</div>
<div class="col-4">
<img src="img/pierre-3.jpg" alt="brightly colored generative art">
</div>
</div>
</div>
</section>
<section>
<div class="wrapper">
<div class="flexrow">
<div class="col-12">
<p>Pierre (named after <a class="inpara" href="https://en.wikipedia.org/wiki/Pierre_B%C3%A9zier" target="_blank">Pierre Beziér</a>) is my most ambitious project to date. It probably needs its own instruction / cheat sheet, but for now, I suggest you click on / interact with every element in the UI panel (and in the lower right corner) to get a sense of what Pierre can do. Even the points that make up the bezier curves are interactive! Try moving them around.</p>
</div>
</div>
</div>
</section>
<section>
<div class="wrapper">
<div class="flexrow">
<div class="col-12">
<h3>Twirly Thing</h3>
<p><span class="cta">See it in action here:</span> <a href="https://jim-wolf-i-am.github.io/spiro-4-hsl-2/" target="_blank">https://jim-wolf-i-am.github.io/spiro-4-hsl-2/</a></p>
</div>
</div>
</div>
</section>
<section>
<div class="wrapper">
<div class="flexrow">
<div class="col-4">
<img src="img/twirly-thing-1.jpg" alt="brightly colored generative art">
</div>
<div class="col-4">
<img src="img/twirly-thing-3.jpg" alt="brightly colored generative art">
</div>
<div class="col-4">
<img src="img/twirly-thing-2.jpg" alt="brightly colored generative art">
</div>
</div>
<div class="flexrow">
<div class="col-12">
<p>This project started with a simple question: Can I make a web-based Spirograph? The answer (back when I started coding) was “No. No you can not.” But I did come up with this, and I think it’s quite beautiful. Oh, the math equations that make it work are based on the <a class="inpara" href="https://en.wikipedia.org/wiki/Spirograph" target="_blank">Spirograph</a>, so, there’s that minor victory.</p>
<p>Much like Pierre, to get the most out of this interactive art program, click on / interact with every UI element.</p>
</div>
</div>
</div>
</section>
<footer>
<div class="wrapper">
<div class="flexrow">
<div class="col-12">
<p class="footer-msg">Code is Art</p>
</div>
</div>
</div>
</footer>
</body>
</html>