-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
54 lines (52 loc) · 1.15 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
<!DOCTYPE html>
<head>
<meta charset="utf-8">
<style>
.node {
font: 10px sans-serif;
cursor: pointer;
}
.overlay{
background-color:#EEE;
}
.add_node {
cursor: pointer;
}
.link,.link_new {
fill: none;
stroke: #ccc;
stroke-width: 1.5px;
}
.templink {
fill: none;
stroke: red;
stroke-width: 3px;
}
.ghostCircle{
opacity: 0.8;
}
.ghostCircle.show{
display:block;
fill: #FFFFE0;
}
.ghostCircle.show.focused{
fill: #FFFF00;
}
.ghostCircle, .activeDrag .ghostCircle{
display: none;
}
</style>
<script src="http://code.jquery.com/jquery-1.10.2.min.js"></script>
<script src="http://d3js.org/d3.v3.min.js" charset="utf-8"></script>
<script src="tree.min.js"></script>
</head>
<body>
<div id="container">
<div id="main">
<div id="chart">
<div id="chart-inner"></div>
</div>
</div>
</div>
</body>
</html>