-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
185 lines (162 loc) · 5.1 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
<!DOCTYPE html>
<meta charset="utf-8">
<title>Force-Directed Graph</title>
<style>
.node {
stroke: #3182bd;
}
.link {
fill: none;
stroke: #9ecae1;
stroke-width: 1.5px;
}
svg{
position: absolute;
margin: auto;
}
.node text {
font-size: 12px;
font-weight: normal;
fill: #000;
stroke-width: 0.1px;
text-anchor: middle;
}
svg .node circle{
stroke-width: 0;
}
svg .node title{
stroke-width: 1px;
}
</style>
<body>
<script src="//d3js.org/d3.v3.min.js"></script>
<script>
var width = window.screen.width;
var height = 1000;
var root;
// 模拟物理力排放相连节点的位置
var force = d3.layout.force()
.size([width - 60, height])
.on("tick", tick);
var svg = d3.select("body").append("svg")
.attr("width", width)
.attr("height", height);
// 从当前文档选择多个元素
var link = svg.selectAll(".link"),
node = svg.selectAll(".node");
d3.json("demo.json", function(error, json) {
if (error) throw error;
root = json;
update();
});
function update() {
// 平坦话嵌套数据
var nodes = flatten(root),
// 根据给定描述数据, 生成树状节点关系
links = d3.layout.tree().links(nodes);
// Restart the force layout.
// 启动一种流体力学形式的布局
force
.nodes(nodes)
.links(links)
.linkDistance(120)
.charge(-1000)
.start();
// Update the links…
// 把数据与dom元素进行绑定
link = link.data(links, function(d) { return d.target.id; });
// Exit any old links.
// 如果数据旧的里面有、新的里面没有,那就一除掉
link.exit().remove();
// Enter any new links.
// 如果数据新的里面有、旧的里面没有那就画到dom里面去
link.enter().append("line")
.attr("class", "link")
.attr("x1", function(d) { return d.source.x; })
.attr("y1", function(d) { return d.source.y; })
.attr("x2", function(d) { return d.target.x; })
.attr("y2", function(d) { return d.target.y; });
// Update the nodes…
// 绑定节点
node = node.data(nodes, function(d) { return d.id; }).style("fill", color)
// Exit any old nodes.
node.exit().remove();
// Enter any new nodes.
const g = node.enter()
.append('g')
.attr("class", "node")
.attr("transform", function(d) {
return "translate(" + d.x + "," + d.y + ")";
})
.on("click", click)
.call(force.drag)
.attr('style', function (d) {
return `cursor: ${d.url ? 'pointer' : 'default'}`;
});
g.append(function (d) {
if(d.url) {
const title = document.createElementNS("http://www.w3.org/2000/svg","title");
title.appendChild(document.createTextNode(d.url || ''));
return title;
} else {
return document.createTextNode('');
}
});
g.append('circle')
.attr("r", function(d) {
if(d.children) {
return 40;
} else return 30
})
.style("fill", color)
.style('box-shadow', function (d) {
return `0 0 4px ${color(d)}`
})
.attr('title', function (d) {
return d.url || ''
});
g.append('text')
.text(function (d) {
return d.name
})
}
function tick() {
link.attr("x1", function(d) { return d.source.x; })
.attr("y1", function(d) { return d.source.y; })
.attr("x2", function(d) { return d.target.x; })
.attr("y2", function(d) { return d.target.y; });
node.attr("transform", function(d) {
return "translate(" + d.x + "," + d.y + ")";
})
}
// Color leaf nodes orange, and packages white or blue.
function color(d) {
return d._children ? "#3182bd" : d.children ? "#c6dbef" : "#fd8d3c";
}
// Toggle children on click.
function click(d) {
if (!d3.event.defaultPrevented) {
if (d.children) {
d._children = d.children;
d.children = null;
} else {
d.children = d._children;
d._children = null;
}
if(d.url) window.open(d.url)
}
}
// Returns a list of all nodes under the root.
// 把嵌套的对象转成对象的数组
function flatten(root) {
var nodes = [], i = 0;
// 递归
function recurse(node) {
if (node.children) node.children.forEach(recurse);
if (!node.id) node.id = ++i;
nodes.push(node);
}
recurse(root);
return nodes;
}
</script>