-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
34 lines (27 loc) · 1.19 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>ZStack-Pattern-Maker</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div id="container">
<!-- Create and append clones dynamically -->
</div>
<div id="control-panel">
<button class="style-btn">Click through the alignment-settings</button>
<button class="mirror-btn">Click through the mirror-types</button>
<label for="hueRange">Move <span style="color: orange">me</span> to animate colors.</label>
<input id="hueRange" type="range" class="hue-range" min="0" max="360" value="0" />
<div class="num-input-container">
<label style="font-size: 0.8em" for="numColsInput">Columns</label>
<input id="numColsInput" type="number" class="num-cols-input" min="1" max="15" value="" />
<label for="numRowsInput" style="font-size: 0.8em">Rows</label>
<input id="numRowsInput" type="number" class="num-rows-input" min="1" max="15" value="" />
</div>
</div>
<script src="main.js" type="module"></script>
</body>
</html>