-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathindex.html
73 lines (65 loc) · 2.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>PolyPal SVG Editor</title>
<link rel="stylesheet" href="css/style.css">
<link rel="icon" type="image/png" href="images/favicon.png" />
</head>
<body>
<div class="svg-canvas">
<svg
version="1.1"
baseProfile="full"
width="100%"
height="100%"
xmlns="http://www.w3.org/2000/svg"
class="svg-image">
</svg>
<svg class="svg-points"></svg>
</div>
<div class="top-ui">
<span class="logo">PolyPal Editor</span>
<button class="save" text="Save this picture, it will be here when you come back.">Save</button>
<button class="load" text="Load the last-saved picture.">Load</button>
<button class="reset" text="Delete everything and start over.">Reset</button>
<button class="download" text="Download this image as an SVG.">Download SVG</button>
—
Extrude type
<button class="extrude" text="Build with squares." type="line">◼</button>
<button class="extrude" text="Build with triangles." type="point">▲</button>
—
<button class="undo" text="Undo the last action.">Undo</button>
<button class="delete" text="Delete selected points & shapes.">Delete</button>
—
Z-index
<button class="z-up" text="Move the shape 1 higher (+ Shift for very top).">↑</button>
<button class="z-down" text="Move the shape 1 lower (+ Shift for very bottom).">↓</button>
</div>
<div class="bottom-ui">
<span>Scale</span>
<input type="range" class="scale" min="-1" value="0" max="1" step=".05">
<span>Rotate</span>
<input type="range" class="rotate" min="-180" value="0" max="180" step=".25">
</div>
<!-- Toolbars -->
<div class="colors"></div>
<div class="tools"></div>
<!-- Code -->
<script src="js/editor/utils.js"></script>
<script src="js/editor/savedpics.js"></script>
<script src="js/editor/vars.js"></script>
<script src="js/editor/tools.js"></script>
<script src="js/editor/zindex.js"></script>
<script src="js/editor/settings.js"></script>
<script src="js/editor/scale.js"></script>
<script src="js/editor/draw.js"></script>
<script src="js/editor/grid.js"></script>
<script src="js/editor/colors.js"></script>
<script src="js/editor/memory.js"></script>
<script src="js/editor/index.js"></script>
<script src="js/editor/listeners.js"></script>
<script src="js/editor/keys.js"></script>
<script src="js/editor/tool-create.js"></script>
</body>
</html>