-
Notifications
You must be signed in to change notification settings - Fork 0
/
demo.html
68 lines (62 loc) · 1.84 KB
/
demo.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
58
59
60
61
62
63
64
65
66
67
68
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>D3 Demo</title>
<style type="text/css">
.node {
cursor: pointer;
}
.overlay {
background-color: #fff;
}
.node circle {
fill: #fff;
stroke: #2bb7f5;
stroke-width: 1.5px;
width:30px;
height:30px;
}
.node rect {
fill: #fff;
stroke: #2bb7f5;
stroke-width: 1.5px;
}
.node text {
font-size: 13px;
font-family: sans-serif;
}
.link {
fill: none;
stroke: #727070;
stroke-width: 1.5px;
}
.ghostCircle.show {
display: block;
}
.ghostCircle, .activeDrag .ghostCircle {
display: none;
}
</style>
</head>
<body>
<div id="tree-container"></div>
</body>
<script src="js/jquery-1.10.2.min.js"></script>
<!-- <script src="js/d3.js"></script> -->
<script src="js/d3.v3.min.js"></script>
<!-- <script src="js/Tree_diag.js"></script> -->
<!-- <script src="js/Tree_rect.js"></script> -->
<!-- <script src="js/Tree_circle.js"></script> -->
<!-- <script src="js/Tree_img_animate.js"></script> -->
<!-- <script src="js/Tree_img_normal_id.js"></script> -->
<!-- <script src="js/Tree_img_normal_name.js"></script>-->
<!-- <script src="js/Tree_drag.js"></script> -->
<!-- <script src="js/Tree_img_level_all.js"></script> -->
<!-- <script src="js/Tree_img_level_only.js"></script> -->
<!-- <script src="js/Tree_img_level_exclude.js"></script> -->
<script src="js/Tree_img_vertical.js"></script>
<script src="js/draw.js"></script>
</html>