使用vis-network根据节点坐标定位环形工具栏

使用vis-network根据节点坐标定位demo

代码

<!doctype html>
<html>
<head>
  <title></title>
  <style type="text/css">
	body{
		padding:0;
		margin:0;
	}
    #mynetwork {
      width: 100%;
      height: 600px;
      border: 1px solid lightgray;
    }
	.cricle{
		position: absolute;
		left: 0px;
		top: 0px;
		width: 100px;
		height: 100px;
		border: 30px solid rgba(200,200,200,0.7);
		border-radius: 50px;
		box-sizing: border-box;
		z-index: 10;
		display: none;
	}
	.cricle > span{
		position: absolute;
		left: 0;
		right: 0;
		width: 30px;
		height: 20px;
		line-height: 20px;
		text-align: center;
		font-size: 10px;
		cursor: pointer;
	}
	.cricle > span:hover{
		color: #1b68ff;
	}
	.cricle > span:nth-child(1){
		left: 5px;
		top: -25px;
	}
	.cricle > span:nth-child(2){
		left: 37px;
		top: -5px;
	}
	.cricle > span:nth-child(3){
		left: 37px;
		top: 25px;
	}
	.cricle > span:nth-child(4){
		left: 5px;
		top: 44px;
	}
	.cricle > span:nth-child(5){
		left: -27px;
		top: 25px;
	}
	.cricle > span:nth-child(6){
		left: -27px;
		top: -5px;
	}
  </style>
</head>
<body>
	<div id="mynetwork"></div>
	<div id="cricle" class="cricle">
		<span>选项</span>
		<span>选项</span>
		<span>选项</span>
		<span>选项</span>
		<span>选项</span>
		<span>选项</span>
	</div>
	
	<script type="text/javascript" src="https://unpkg.com/vis-network/standalone/umd/vis-network.min.js"></script>
	<script type="text/javascript" > 
	// 创建节点
	var nodes = new vis.DataSet([
			{id: 1, label: 'Node 1',image:'https://ai-open-platform-1251483553.cos.ap-guangzhou.myqcloud.com/m1.png',shape: 'circularImage'},
			{id: 2, label: 'Node 2',image:'https://ai-open-platform-1251483553.cos.ap-guangzhou.myqcloud.com/m1.png',shape: 'circularImage'},
			{id: 3, label: 'Node 3',image:'https://ai-open-platform-1251483553.cos.ap-guangzhou.myqcloud.com/m1.png',shape: 'circularImage'},
			{id: 4, label: 'Node 4',image:'https://ai-open-platform-1251483553.cos.ap-guangzhou.myqcloud.com/m1.png',shape: 'circularImage'},
			{id: 5, label: 'Node 5',image:'https://ai-open-platform-1251483553.cos.ap-guangzhou.myqcloud.com/m1.png',shape: 'circularImage'}
	]);
	
	// 创建关系
	var edges = new vis.DataSet([
			{from: 1, to: 2},
			{from: 2, to: 4},
			{from: 2, to: 5},
	]);
	
	var container = document.getElementById('mynetwork');
	var data = {
			nodes: nodes,
			edges: edges
	};
	
	// 节点相关参数
	var options = {
		interaction:{hover:true},
		// locale: 1.5,
		height:'100%',
		width:'100%',
		layout:{
			randomSeed: 2,
			// hierarchical: {
			//   direction: 'LR',
			//   sortMethod:'directed'
			// }
		},
		nodes: {
			borderWidth:4,
			size:20,
			font: {
			  color:'#333',
			  size: 14
			},
			  color: {
			  border: 'rgba(167, 173, 221, 1)',
			  hover:'rgba(2, 126, 238, 1)',
			  highlight:'rgba(2, 126, 238, 1)'
			}
		},
		edges: {
		  arrows: {
			  to: { enabled: true, scaleFactor: 0.5, type: 'arrow' } //箭头的显示
		  },
		  color: {
			color:'rgba(167, 173, 221, 1)',
			hover:'rgba(2, 126, 238, 1)',
			highlight:'rgba(2, 126, 238, 1)'
		  },
		  font:{
			color:'#999',
			size:12
		  }
		}
	};
	// 创建拓扑图对象
	var network = new vis.Network(container, data, options);
	
	// 全局事件监听
	network.on("click", function(e){
		console.log(e)
		console.log(network)
		// 获取节点canvas坐标
		let p = network.getPosition(e.nodes[0]);
		console.log(p)
		// 获取缩放尺寸
		let scale = network.getScale();
		console.log(scale)
		// canvas->dom 坐标转化
		console.log(network.canvasToDOM({x:p.x, y:p.y}))
		let domPosi = network.canvasToDOM({x:p.x, y:p.y});
		// 设置环形位置
		setCriclePosition(domPosi.x - 50, domPosi.y - 50, scale);
	})
	network.on("dragStart", function(e){
		console.log(e)
		hideCricle();
	})
	network.on("dragging", function(e){
	  console.log(e)
	})
	network.on("dragEnd", function(e){
	  console.log(e)
	})
	network.on("controlNodeDragging", function(e){
		console.log(e)
		hideCricle();
	})
	network.on("zoom", function(e){
		console.log(e)
		hideCricle();
	})

	// 定位div
	function setCriclePosition(x,y, scale){
		let cricle = document.getElementById("cricle");
		cricle.style = `left: ${x}px; top: ${y}px;transform:scale(${scale});display:block;`;
	}
	
	// 隐藏div
	function hideCricle(){
		let cricle = document.getElementById("cricle");
		cricle.style = `display:none;`;
	}
</script>
</body>
</body>
</html>
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值