mirror of
https://gitee.com/antv/g6.git
synced 2024-12-04 12:49:04 +08:00
99 lines
2.2 KiB
HTML
99 lines
2.2 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<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>默认的图片节点</title>
|
|
</head>
|
|
<body>
|
|
<div id="mountNode"></div>
|
|
<script src="../build/g6.js"></script>
|
|
<script>
|
|
const data = {
|
|
nodes: [
|
|
{
|
|
id: 'triangle',
|
|
label: '主题 ModelRect Title',
|
|
description: '这里是一顿描述信息,不知道长短',
|
|
x: 150,
|
|
y: 100,
|
|
},
|
|
],
|
|
};
|
|
|
|
const graph = new G6.Graph({
|
|
container: 'mountNode',
|
|
width: 800,
|
|
height: 600,
|
|
defaultNode: {
|
|
shape: 'image',
|
|
size: [200, 80],
|
|
labelCfg: {
|
|
position: 'right',
|
|
offset: -120,
|
|
},
|
|
clipCfg: {
|
|
show: true,
|
|
type: 'rect',
|
|
r: 30,
|
|
width: 35,
|
|
height: 25,
|
|
style: {
|
|
stroke: '#ccc',
|
|
lineWidth: 5,
|
|
},
|
|
},
|
|
},
|
|
nodeStateStyles: {
|
|
select: {
|
|
fill: 'red',
|
|
},
|
|
hover: {
|
|
fill: 'blue',
|
|
},
|
|
},
|
|
modes: {
|
|
default: ['drag-canvas'],
|
|
},
|
|
});
|
|
|
|
graph.data(data);
|
|
graph.render();
|
|
|
|
graph.on('node:click', evt => {
|
|
const { item } = evt;
|
|
graph.setItemState(item, 'select', true);
|
|
|
|
graph.updateItem(item, {
|
|
size: [160, 130],
|
|
style: {
|
|
fill: '#b5f5ec',
|
|
},
|
|
preRect: {
|
|
fill: '#ff4d4f',
|
|
},
|
|
linkPoints: {
|
|
fill: '#fff',
|
|
size: 5,
|
|
},
|
|
stateIcon: {
|
|
img:
|
|
'https://gw.alipayobjects.com/zos/basement_prod/c781088a-c635-452a-940c-0173663456d4.svg',
|
|
},
|
|
});
|
|
});
|
|
|
|
graph.on('node:mouseenter', evt => {
|
|
const { item } = evt;
|
|
graph.setItemState(item, 'hover', true);
|
|
});
|
|
|
|
graph.on('node:mouseleave', evt => {
|
|
const { item } = evt;
|
|
graph.setItemState(item, 'hover', false);
|
|
});
|
|
</script>
|
|
</body>
|
|
</html>
|