-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
70 lines (59 loc) · 2.28 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Comic Template Maker</title>
<link href="style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="page">
<div id="options">
<div id="option-size">
<div class="option-title">Size</div>
<div class="option-options">
<input value="850" type="number" class="option-option" id="option-size-width" />
<input value="1100" type="number" class="option-option" id="option-size-height" />
<button id="option-size-swap" class="option-option">swap</button>
</div>
</div>
<div id="option-format">
<div class="option-title">Format</div>
<div class="option-options">
<label for="option-format-padding">Padding</label>
<input value="25" type="number" class="option-option" id="option-format-padding" />
<label for="option-format-spacing">Panel spacing</label>
<input value="25" type="number" class="option-option" id="option-format-spacing" />
<label for="option-format-rows">Rows</label>
<input value="5" type="number" class="option-option" id="option-format-rows" />
<br>
<label for="option-format-thickness">Border Thickness</label>
<input value="5" type="number" class="option-option" id="option-format-thickness" />
</div>
</div>
<div id="option-current-panel">
<div class="option-title">Current Panel</div>
<div class="option-options">
<label for="option-cur-width">Relative width</label>
<input value="1" type="number" class="option-option" id="option-cur-width" />
<button class="option-option" id="option-cur-delete">delete</button>
<button class="option-option" id="option-cur-ar">add to the right</button>
</div>
</div>
<div id="option-export">
<div class="option-title">Export</div>
<div class="option-options">
<button class="option-option" id="option-export-svg">export svg</button>
<button class="option-option" id="option-export-png">export png</button>
</div>
</div>
<div id="instructions">
Click on a box to select it and change its properties.
</div>
</div>
<svg id="canvas" viewBox="0 0 400 150" xmlns="http://www.w3.org/2000/svg">
</svg>
</div>
<script src="script.js"></script>
</body>
</html>