You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
82 lines
1.9 KiB
82 lines
1.9 KiB
<!DOCTYPE html>
|
|
<meta charset="utf-8">
|
|
<canvas width="960" height="600"></canvas>
|
|
<script src="https://d3js.org/d3.v4.min.js"></script>
|
|
<script>
|
|
|
|
var canvas = document.querySelector("canvas"),
|
|
context = canvas.getContext("2d"),
|
|
width = canvas.width,
|
|
height = canvas.height;
|
|
|
|
var simulation = d3.forceSimulation()
|
|
.force("link", d3.forceLink().id(function(d) { return d.id; }))
|
|
.force("charge", d3.forceManyBody())
|
|
.force("center", d3.forceCenter(width / 2, height / 2));
|
|
|
|
d3.json("test.json", function(error, graph) {
|
|
if (error) throw error;
|
|
|
|
simulation
|
|
.nodes(graph.nodes)
|
|
.on("tick", ticked);
|
|
|
|
simulation.force("link")
|
|
.links(graph.links);
|
|
|
|
d3.select(canvas)
|
|
.call(d3.drag()
|
|
.container(canvas)
|
|
.subject(dragsubject)
|
|
.on("start", dragstarted)
|
|
.on("drag", dragged)
|
|
.on("end", dragended));
|
|
|
|
function ticked() {
|
|
context.clearRect(0, 0, width, height);
|
|
|
|
context.beginPath();
|
|
graph.links.forEach(drawLink);
|
|
context.strokeStyle = "#aaa";
|
|
context.stroke();
|
|
|
|
context.beginPath();
|
|
graph.nodes.forEach(drawNode);
|
|
context.fill();
|
|
context.strokeStyle = "#fff";
|
|
context.stroke();
|
|
}
|
|
|
|
function dragsubject() {
|
|
return simulation.find(d3.event.x, d3.event.y);
|
|
}
|
|
});
|
|
|
|
function dragstarted() {
|
|
if (!d3.event.active) simulation.alphaTarget(0.3).restart();
|
|
d3.event.subject.fx = d3.event.subject.x;
|
|
d3.event.subject.fy = d3.event.subject.y;
|
|
}
|
|
|
|
function dragged() {
|
|
d3.event.subject.fx = d3.event.x;
|
|
d3.event.subject.fy = d3.event.y;
|
|
}
|
|
|
|
function dragended() {
|
|
if (!d3.event.active) simulation.alphaTarget(0);
|
|
d3.event.subject.fx = null;
|
|
d3.event.subject.fy = null;
|
|
}
|
|
|
|
function drawLink(d) {
|
|
context.moveTo(d.source.x, d.source.y);
|
|
context.lineTo(d.target.x, d.target.y);
|
|
}
|
|
|
|
function drawNode(d) {
|
|
context.moveTo(d.x + 3, d.y);
|
|
context.arc(d.x, d.y, 3, 0, 2 * Math.PI);
|
|
}
|
|
|
|
</script>
|
|
|