d3.js 力导向图

<!DOCTYPE html>
<html>

<head>
    <meta charset="utf-8" />
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <title>Page Title</title>
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <style>
        .link line.separator {
            stroke: #fff;
            stroke-width: 2px;
        }

        .node circle {
            stroke: #000;
            stroke-width: 1.5px;
        }

        .node text {
            font: 10px sans-serif;
            pointer-events: none;
        }
    </style>
</head>

<body>
    <script src="https://d3js.org/d3.v3.min.js"></script>
    <script>
        var width = 1900,
            height = 900;

        var color = d3.scale.category10(); // 构造一个 10 种颜色的序数比例尺
        // color()只需要传入a-z字母即可获取对应的颜色 k==>a  循环
        var radius = d3.scale.sqrt() // 构建一个平方根比例尺
            .range([0, 6]); //构造一个新的乘方比例尺,输入值域默认为[0,1],输出范围默认为[0,1],指数默认为0.5。这种方法可以简记为: d3.scale.pow().exponent(.5)

        var svg = d3.select("body").append("svg")
            .attr("width", width)
            .attr("height", height);

        var force = d3.layout.force() // - 使用物理模拟排放链接节点的位置
            .size([width, height])
            .charge(-1500) // 取得或者设置电荷强度
            .linkDistance(180);

        d3.json("index.json", function (error, graph) {
            if (error) throw error;
            var edges = [];
            graph.links.forEach(
                function (e) {
                    var sourceNode = graph.nodes.filter(function (n) {
                            return n.id === e.source;
                        })[0],
                        targetNode = graph.nodes.filter(
                            function (n) {
                                return n.id === e.target;
                            })[0]

                    edges.push({
                        source: sourceNode,
                        target: targetNode,
                        bond: e.bond
                    });
                }
            );
            force
                .nodes(graph.nodes) // 取得或者设置布局的节点数组
                .links(edges) // 取得或者设置节点间的链接数组
                .on("tick", tick) // 监听在计算布局位置时的更新  执行tick函数
                .start(); // 当节点变化时启动或者重启模拟

            //  玩箭头
            var marker =
                svg.append("marker")
                .attr("id", "arrows")
                .attr("markerUnits", "userSpaceOnUse")
                .attr("viewBox", "0 -5 10 10") //坐标系的区域
                .attr("refX", 32) //箭头坐标
                .attr("markerWidth", 12) //标识的大小
                .attr("markerHeight", 12)
                .attr("orient", "auto") //绘制方向,可设定为:auto(自动确认方向)和 角度值
                .attr("stroke-width", 2) //箭头宽度
                .append("path")
                .attr("d", "M0,-5L10,0L0,5") //箭头的路径
                .attr('fill', '#bbb'); //箭头颜色


            // 玩line    
            var link = svg.selectAll(".link")
                .data(edges)
                .enter().append("path")
                .attr({
                    'd': function (d) {
                        return 'M ' + d.source.x + ' ' + d.source.y + ' L ' + d.target.x + ' ' + d.target
                            .y
                    },
                    'class': 'edgepath',
                    'id': function (d, i) {
                        return 'edgepath' + i;
                    }
                })
                .style('stroke', "#121212")
                .style('stroke-width', .5)
                .attr("class", "link")
                .attr("marker-end", "url(#resolved)");

            // 玩线上文字

            var edges_text = svg.selectAll(".edgelabel")
                .data(edges)
                .enter()
                .append("text")
                .attr({
                    'class': 'edgelabel',
                    'id': function (d, i) {
                        return 'edgepath' + i;
                    },
                    'dx': 80,
                    'dy': 0
                    //'font-size':10,
                    //'fill':'#aaa'
                })
            //设置线条上的文字
            edges_text.append('textPath')
                .attr('xlink:href', function (d, i) {
                    return '#edgepath' + i
                })
                .style("pointer-events", "none")
                .text(function (d) {
                    return '关系';
                });

            // 玩 node
            var node = svg.selectAll(".node")
                .data(graph.nodes)
                .enter().append("g")
                .attr("class", "node")
                .call(force.drag); // 为当前选择调用一个函数。  给节点绑定拖动行为

            node.append("circle") // 设置圆圈的样式
                .attr("r", '25')
                .style("fill", function (d) { // 填充颜色 
                    var color = ''
                    switch (d.atom) {
                        case 'C':
                            color = '#429AF1';
                            break;
                        case 'O':
                            color = '#2Aa3D4';
                            break;
                        case 'H':
                            color = '#A1c1FF';
                            break;
                    }
                    return color;
                })
                .style('stroke', function (d) {
                    var color = ''
                    switch (d.atom) {
                        case 'C':
                            color = '#2299F8';
                            break;
                        case 'O':
                            color = '#2A93D8';
                            break;
                        case 'H':
                            color = '#d191F4';
                            break;
                    }
                    return color;
                })
                .on('click', function (node) {
                    link.style('stroke', function (line) {
                        if (line.source.id == node.id || line.target.id == node.id) {
                            return 'red'
                        } else {
                            return '#121212'
                        }
                    })
                });

            node.append("text")
                .attr("dy", ".35em")
                .attr("text-anchor", "middle") // 文本锚点属性被用来描述该文本与所给点的对齐方式 (开头、中间、末尾对齐) 。
                .text(function (d) { // 确定节点的文字
                    return d.word;
                }).style('fill', function (d) {
                    var color = ''
                    switch (d.atom) {
                        case 'C':
                            color = '#010141';
                            break;
                        case 'O':
                            color = '#010508';
                            break;
                        case 'H':
                            color = '#021425';
                            break;
                    }
                    return color;
                });

            function tick() {
                // 更新线
                link.selectAll("line")
                    .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;
                    });


                link.attr('d', function (d) {
                    var path = 'M ' + d.source.x + ' ' + d.source.y + ' L ' + d.target.x + ' ' + d.target
                        .y;
                    return path;
                });

                edges_text.attr('transform', function (d, i) {
                    if (d.target.x < d.source.x) {
                        bbox = this.getBBox();
                        rx = bbox.x + bbox.width / 2;
                        ry = bbox.y + bbox.height / 2;
                        return 'rotate(180 ' + rx + ' ' + ry + ')';
                    } else {
                        return 'rotate(0)';
                    }
                });

                // 更新节点
                node.attr("transform", function (d) {
                    return "translate(" + d.x + "," + d.y + ")";
                });

            }
        });
    </script>
</body>

</html>
{
    "nodes": [{
            "id": "770",
            "word": "董事0",
            "atom": "C",
            "size": 20
        },
        {
            "id": "771",
            "word": "董事1",
            "atom": "C",
            "size": 20
        },
        {
            "id": "772",
            "word": "董事2",
            "atom": "C",
            "size": 20
        },
        {
            "id": "773",
            "word": "董事长3",
            "atom": "C",
            "size": 24
        },
        {
            "id": "774",
            "word": "员工4",
            "atom": "H",
            "size": 10
        },
        {
            "id": "775",
            "word": "经理5",
            "atom": "O",
            "size": 25
        },
        {
            "id": "776",
            "word": "经理6",
            "atom": "O",
            "size": 25
        },
        {
            "id": "777",
            "word": "员工7",
            "atom": "H",
            "size": 10
        },
        {
            "id": "778",
            "word": "员工8",
            "atom": "H",
            "size": 10
        },
        {
            "id": "779",
            "word": "员工9",
            "atom": "H",
            "size": 10
        },
        {
            "id": "780",
            "word": "员工10",
            "atom": "H",
            "size": 10
        },
        {
            "id": "781",
            "word": "员工11",
            "atom": "H",
            "size": 10
        },
        {
            "id": "782",
            "word": "员工12",
            "atom": "H",
            "size": 10
        }
    ],
    "links": [{
            "source": "770",
            "target": "771",
            "bond": 1
        },
        {
            "source": "771",
            "target": "772",
            "bond": 1
        },
        {
            "source": "771",
            "target": "773",
            "bond": 1
        },
        {
            "source": "772",
            "target": "775",
            "bond": 2
        },
        {
            "source": "772",
            "target": "776",
            "bond": 1
        },
        {
            "source": "771",
            "target": "774",
            "bond": 1
        },
        {
            "source": "773",
            "target": "780",
            "bond": 1
        },
        {
            "source": "773",
            "target": "781",
            "bond": 1
        },
        {
            "source": "770",
            "target": "777",
            "bond": 2
        },
        {
            "source": "770",
            "target": "778",
            "bond": 1
        },
        {
            "source": "770",
            "target": "779",
            "bond": 1
        },
        {
            "source": "775",
            "target": "782",
            "bond": 1
        }
    ]
}
  • 3
    点赞
  • 5
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值