【发布时间】:2023-01-01 14:47:02
【问题描述】:
我想使用jsMind定制我的思维导图
目前这是我的代码:
var mind = { meta: {
name: 'jsMind remote',
author: 'hizzgdev@163.com',
version: '0.2',
},
format: 'node_tree',
data: {
id: 'root',
topic: 'jsMind',
children: [
{
id: 'easy',
topic: 'Easy',
direction: 'left',
children: [
{ id: 'easy1', topic: 'Easy to show' },
{
'id': 'other3',
'background-image': 'ant.png',
'width': '100',
'height': '100',
},
],
},
{
id: 'open',
topic: 'Open Source',
direction: 'right',
children: [
{
'id': 'open2',
'topic': 'BSD License',
'leading-line-color': '#ff33ff',
},
],
}
};
_jm.show(mind);
欢迎任何完成此挑战的想法。
【问题讨论】:
标签: javascript nodes mindmap