-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
27 lines (27 loc) · 990 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>SVG Path Start Mover</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="main.css" rel="stylesheet">
<script type="module" src="https://cdn.jsdelivr.net/npm/[email protected]/lib/SVGPathData.module.js" charset="UTF-8"></script>
<script type="module" src="./main.js" charset="UTF-8"></script>
<link rel="apple-touch-icon" sizes="180x180" href="./apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="./favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="./favicon-16x16.png">
<link rel="manifest" href="./site.webmanifest">
</head>
<body>
<div id="pageHolder">
<div id="inputArea">
<textarea id="pathText"></textarea>
</div>
<svg id="preview">
<path id="pathPreview" fill="lightgray" stroke="black"></path>
<g id="pointsGroup"></g>
<circle id="startPoint" class="point" r="4">
</svg>
</div>
</body>
</html>