-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex-jana.html
47 lines (42 loc) · 1.03 KB
/
index-jana.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
<!DOCTYPE html>
<html>
<head>
<title>JSPlumb</title>
</head>
<body>
<style>
#diagramContainer {
padding: 20px;
width:80%; height: 200px;
border: 1px solid gray;
}
.item {
position: absolute;
}
.jtk-connector { z-index:4; }
.jtk-endpoint { z-index:5; }
.jtk-overlay { z-index:6; }
.endPoint {
fillStyle: red;
}
</style>
<div id="diagramContainer">
<div id="db" class="item">
<img src="img/db.png">
</div>
<div id="api-manager" class="item" style="left:350px;">
<img src="img/api-manager.png">
</div>
<div id="load-balancer" class="item" style="left:250px;">
<img src="img/load-balancer.png">
</div>
<div id="svn" class="item" style="left:250px;">
<img src="img/svn.png">
</div>
</div>
<script src="jquery-1.9.1.min.js"></script>
<script src="jquery-ui-1.9.2.min.js"></script>
<script src="jquery.jsPlumb-1.4.1-all-min.js"></script>
<script src="jana.js"></script>
</body>
</html>