-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
34 lines (32 loc) · 1.05 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Marbelous</title>
<link rel="stylesheet" href="index.css"/>
<script type="module" src="index.ts"></script>
</head>
<body>
<div id="page">
<h1 id="marbelous">Marbelous</h1>
<div id="svg-container"></div>
<details id="settings_container">
<summary>Settings</summary>
<div id="settings_controls">
<label for="settings_complexity">Complexity</label>
<input type="number" id="settings_complexity" min="2" required value="4"/>
<label for="settings_curveness">Curveness</label>
<input type="range" id="settings_curveness" min="1" max="100" value="70"/>
<label>Colors <button id="settings_add-color" class="borderless">+</button></label>
<div id="settings_colors"/>
</div>
</details>
<div id="downloads">
<button id="download-png">Download PNG</button>
<button id="download-svg">Download SVG</button>
</div>
<button id="generate" autofocus>Generate</button>
</div>
</body>
</html>