-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
118 lines (115 loc) · 4.59 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
108
109
110
111
112
113
114
115
116
117
118
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="icon" href="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/240/apple/237/dna-double-helix_1f9ec.png">
<link rel="stylesheet" href="//cdn.jsdelivr.net/npm/hack-font@3/build/web/hack-subset.css">
<link rel="stylesheet" href="style.css">
<title>lyndenn</title>
</head>
<body>
<div id="main-body">
<section id="head">
<div>
🧬 lyndenn
</div>
</section>
<section id="bodayy">
<div id="options">
<div id="btnPresets" class="btn">.presets</div>
<div id="btnConfig" class="btn">.config</div>
<div id="btnHelp" class="btn">.help</div>
</div>
<div id="canvas">
</div>
</section>
<section id="footer">
<!-- footer in here -->
<div>
Made with ♥ by 1ntEgr8
</div>
</section>
</div>
<div class="options-body">
<div id="presets" class="block">
<span class="x">⨯</span>
<div class="title">Presets</div>
<div class="container">
<div class="btn active">Gosper</div>
<div class="btn">Dragon</div>
<div class="btn">Koch</div>
</div>
</div>
<div id="config" class="block">
<span class="x">⨯</span>
<div class="title">Config</div>
<form action="#">
<p style="color: #2f2f2f; font-size: 0.75rem;">Refer to .help for info on how to set lyndenn up!</p>
<ul>
<li>
<label for="variables">variables</label>
<input type="text" id="variables" name="variables">
</li>
<li>
<label for="constants">constants</label>
<input type="text" id="constants" name="constants">
</li>
<li>
<label for="axiom">axiom</label>
<input type="text" id="axiom" name="axiom">
</li>
<li>
<label for="rules">rules</label>
<textarea id="rules" name="rules"></textarea>
</li>
<li>
<label for="ops">ops</label>
<textarea id="ops" name="ops"></textarea>
</li>
<li>
<label for="order">order</label>
<input type="text" id="order" name="order">
</li>
<li>
<label for="turtle-speed">turtle speed</label>
<input placeholder="speed in pixels/ms" type="text" id="turtle-speed" name="turtle-speed">
</li>
<li>
<label for="turtle-size">turtle size</label>
<input placeholder="value and unit; just like css" type="text" id="turtle-size" name="turtle-size">
</li>
<li>
<label for="turtle-color">turtle color</label>
<input placeholder="hsla, rgba, hex, ... just like css" type="text" id="turtle-color" name="turtle-color">
</li>
<!-- <li style="display: flex; justify-content: center;">
<label for="anim">should animate?</label>
<input type="checkbox" id="anim" name="anim" checked>
</li> -->
</ul>
<div class="btn" id="animate">Animate</div>
</form>
</div>
<div id="help" class="block">
<span class="x">⨯</span>
<div class="title">Help</div>
<div class="container">
<details>
<summary>What is lyndenn?</summary>
</details>
<details>
<summary>Setting up lyndenn</summary>
</details>
<details>
<summary>Customizing the turtle</summary>
</details>
</div>
</div>
</div>
<script src="./turtle.js"></script>
<script src="./lyndenn.js"></script>
<script src="./index.js"></script>
</body>
</html>