g6/demos/internal-node-diamond.html

100 lines
2.3 KiB
HTML
Raw Normal View History

2019-09-26 21:05:57 +08:00
<!DOCTYPE html>
<html lang="en">
2020-02-14 10:10:54 +08:00
<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,
},
],
};
2019-09-26 21:05:57 +08:00
2020-02-14 10:10:54 +08:00
const graph = new G6.Graph({
container: 'mountNode',
width: 800,
height: 600,
defaultNode: {
shape: 'diamond',
size: [200, 80],
2019-09-29 21:02:16 +08:00
style: {
2020-02-14 10:10:54 +08:00
fill: '#bae637',
stroke: '#eaff8f',
lineWidth: 5,
},
labelCfg: {
style: {
fill: '#9254de',
fontSize: 18,
},
},
linkPoints: {
top: true,
bottom: true,
left: true,
right: true,
size: 5,
fill: '#fff',
},
2019-09-26 21:05:57 +08:00
},
2020-02-14 10:10:54 +08:00
nodeStateStyles: {
hover: {
fill: '#d3adf7',
},
2019-09-26 21:05:57 +08:00
},
2020-02-14 10:10:54 +08:00
modes: {
default: ['drag-canvas'],
2019-09-29 18:15:27 +08:00
},
2020-02-14 10:10:54 +08:00
});
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',
},
});
});
2019-09-26 21:05:57 +08:00
2020-02-14 10:10:54 +08:00
graph.on('node:mouseenter', evt => {
const { item } = evt;
graph.setItemState(item, 'hover', true);
});
2019-09-26 21:05:57 +08:00
2020-02-14 10:10:54 +08:00
graph.on('node:mouseleave', evt => {
const { item } = evt;
graph.setItemState(item, 'hover', false);
});
</script>
</body>
</html>