g6/demos/internal-node-star.html

149 lines
3.2 KiB
HTML
Raw Normal View History

2019-09-26 21:05:57 +08:00
<!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">
2019-09-29 21:02:16 +08:00
<title>默认的图片节点</title>
2019-09-26 21:05:57 +08:00
</head>
<body>
<div id="mountNode"></div>
<script src="../build/g6.js"></script>
<script>
2019-10-30 18:18:05 +08:00
G6.registerEdge('selfLine', {
options: {
style: {
stroke: 'red',
lineWidth: 5
}
},
drawShape(cfg, group) {
const shapeStyle = this.getShapeStyle(cfg);
const keyShape = group.addShape('path', {
className: 'edge-shape',
attrs: shapeStyle
});
return keyShape;
}
}, 'single-line')
2019-09-26 21:05:57 +08:00
const data = {
nodes: [
{
2019-10-30 18:18:05 +08:00
id: 'triangle1',
type: 'a',
2019-09-26 21:05:57 +08:00
label: '主题 ModelRect Title',
description: '这里是一顿描述信息,不知道长短',
x: 150,
y: 100,
2019-10-30 18:18:05 +08:00
anchorPoints: [[0.5, 1], [1, 0.5]],
// shape: 'triangle',
style: {
fill: 'blue'
}
},
{
id: 'triangle',
type: 'b',
label: '主题 ModelRect Title',
description: '这里是一顿描述信息,不知道长短',
x: 250,
y: 100,
2019-10-30 18:18:05 +08:00
anchorPoints: [[0.5, 1], [1, 0.5]],
style: {
stroke: 'green'
}
2019-09-26 21:05:57 +08:00
}
2019-10-30 18:18:05 +08:00
],
edges: [
{
source: 'triangle1',
target: 'triangle',
shape: 'selfLine'
}
2019-09-26 21:05:57 +08:00
]
}
2019-09-29 21:02:16 +08:00
2019-09-26 21:05:57 +08:00
const graph = new G6.Graph({
container: 'mountNode',
width: 800,
height: 600,
defaultNode: {
2019-09-29 21:02:16 +08:00
shape: 'star',
2019-10-30 18:18:05 +08:00
size: [60, 80],
2019-09-29 18:15:27 +08:00
style: {
2019-09-29 21:02:16 +08:00
fill: '#bae637',
stroke: '#000',
2019-09-29 21:02:16 +08:00
lineWidth: 5
2019-09-26 21:05:57 +08:00
},
2019-09-29 21:02:16 +08:00
labelCfg: {
position: 'bottom',
offset: 20,
style: {
fill: '#9254de',
fontSize: 18
}
2019-09-26 21:05:57 +08:00
},
linkPoints: {
top: true,
2019-09-29 21:02:16 +08:00
left: true,
right: true,
leftBottom: true,
rightBottom: true,
size: 5,
fill: '#fff'
2019-09-26 21:05:57 +08:00
},
2019-09-29 21:02:16 +08:00
icon: {
show: true
2019-09-26 21:05:57 +08:00
}
2019-09-29 21:02:16 +08:00
},
nodeStateStyles: {
hover: {
fill: '#d3adf7'
}
},
modes: {
default: ['drag-canvas']
2019-09-26 21:05:57 +08:00
}
})
graph.data(data)
graph.render()
graph.on('node:click', evt => {
const { item } = evt
2019-09-27 12:13:22 +08:00
graph.setItemState(item, 'select', true)
2019-09-29 21:02:16 +08:00
2019-09-26 21:05:57 +08:00
graph.updateItem(item, {
size: [ 180, 90],
shape: 'modelRect',
type: 'b',
2019-09-26 21:05:57 +08:00
style: {
fill: '#fff'
2019-09-26 21:05:57 +08:00
},
preRect: {
fill: '#ff4d4f'
},
2019-09-29 18:15:27 +08:00
linkPoints: {
fill: '#fff',
size: 5
},
2019-09-26 21:05:57 +08:00
stateIcon: {
img: 'https://gw.alipayobjects.com/zos/basement_prod/c781088a-c635-452a-940c-0173663456d4.svg'
}
})
})
graph.on('node:mouseenter', evt => {
const { item } = evt
2019-09-27 12:13:22 +08:00
graph.setItemState(item, 'hover', true)
2019-09-26 21:05:57 +08:00
})
graph.on('node:mouseleave', evt => {
const { item } = evt
2019-09-27 12:13:22 +08:00
graph.setItemState(item, 'hover', false)
2019-09-26 21:05:57 +08:00
})
</script>
</body>
</html>