-
Notifications
You must be signed in to change notification settings - Fork 5
/
home.html
53 lines (30 loc) · 1.17 KB
/
home.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
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title>new eda</title>
<script src="https://code.jquery.com/jquery-3.1.1.js" integrity="sha256-16cdPddA6VdVInumRGo6IbivbERE8p7CQR3HzTBuELA=" crossorigin="anonymous"> </script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js" integrity="sha256-T0Vest3yCU7pafRw9r+settMBX6JkKN06dqBnpQ8d30=" crossorigin="anonymous"> </script>
<script src= "https://cdn.jsdelivr.net/snap.svg/0.4.1/snap.svg.js"> </script>
<script src="editor.js"> </script>
<script src="parts.js"> </script>
<link rel="stylesheet" type="text/css" href="eda.css">
</head>
<body>
<div class ="block" id= "sidebar">
<select id="mysel">
<option value="IC8pin">IC8pin</option>
<option value="resistor">Resistor</option>
<option value="capacitor">Capacitor</option>
<option value="IC16pin">IC16pin</option>
</select>
<input id="mybut" type="button" value="Add">
<input id="move" type="button" value="move">
<input id="remove" type="button" value="Remove">
<input id="rotate" type="button" value="Rotate">
<input id="wire" type="button" value="Wire">
</div>
<svg class="block" id="mycanvas" width="900" height="1500">
</svg>
</body>
</html>