jsMind 是一个显示/编辑思维导图的纯 javascript 类库,其基于 html5 的 canvas 进行设计。jsMind 以 BSD 协议开源,在此基础上你可以在你的项目上任意使用。你可以在此浏览适用于 jsMind 的 BSD 许可协议(中英文版本)。
Links:
- App : http://jsmind.sinaapp.com
- Home : http://hizzgdev.github.io/jsmind/developer.html
- Demo :
- Github :
Get Started:
<html>
<head>
<link type="text/css" rel="stylesheet" href="style/jsmind.css" />
<script type="text/javascript" src="js/jsmind.js"></script>
<!--
enable drag-and-drop feature
<script type="text/javascript" src="js/jsmind.draggable.js"></script>
-->
</head>
<body>
<div id="jsmind_container"></div>
<script type="text/javascript">
var mind = {
// 3 data formats were supported ...
// see Documents for more information
};
var options = {
container:'jsmind_container',
theme:'orange',
editable:true
};
var jm = new jsMind(options);
jm.show(mind);
</script>
</body>
</html>