-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
57 lines (50 loc) · 1.21 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>BladeScript -- Script your Silhouette Cutter Designs</title>
<link rel="stylesheet" href="app.css" type="text/css" />
<script src="app.js"></script>
<style>
.boxsizingBorder {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
textarea {
border: 1px solid #999999;
width: 100%;
height: 100%;
margin: 5px 0;
padding: 3px;
resize: both;
}
#hdc {
top: 0px;
left: 0px;
width: 100%;
height: 100%;
}
</style>
</head>
<body>
<div id="dst"></div>
<table width="100%" height="100%">
<tr width="100%" height="100%">
<td width="42%" height="100%" valign="top">
<textarea width="100%" height="100%" id="src" rows="24"></textarea>
</td>
<td width="16%" height="100%" valign="top" align="center">
<button id="run">Run</button>
<p/>
<button id="toDxf">Export To DXF</button>
</td>
<td width="42%" height="100%" bgcolor="#ffff00" valign="top">
<div width="100%" height="100%">
<canvas id="hdc" width="216px" height="279px" style="border:1px solid #000000;"></canvas>
</div>
</td>
</tr>
</table>
</body>
</html>