-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
42 lines (39 loc) · 1.4 KB
/
index.html
File metadata and controls
42 lines (39 loc) · 1.4 KB
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
<html>
<head>
<link type="text/css" rel="stylesheet" href="style.css">
<link href="node_modules/jsoneditor/dist/jsoneditor.min.css" rel="stylesheet" type="text/css">
<script src="node_modules/jsoneditor/dist/jsoneditor.min.js"></script>
</head>
<body>
<div id="gridcontainer">
<div id="topbar">
<input id="chk_left" type="checkbox" checked>Left</input>
<input id="chk_right" type="checkbox" checked>Right</input>
</div>
<div id="layer_list">
layers
<ul>
<li>a</li>
<li>b</li>
</ul>
</div>
<div id="toolbox">
<button id="btn_circle">Circle</button>
<button id="btn_rect">Rect</button>
<button id="btn_zoomin">Zoom in</button>
<button id="btn_zoomout">Zoom out</button>
<!-- TODO zoom slider -->
</div>
<div id="center">
<svg id="svg_box" viewBox="0 0 100 100">
</svg>
</div>
<div id="json_editor"></div>
<div id="note_editor">
<input id="txt_title"></input>
<textarea id="txt_note"></textarea>
</div>
</div>
<script type="module" src="app.js"></script>
</body>
</html>