amazeui-tree
v0.0.5
Published
Amaze UI tree 插件
Downloads
6
Maintainers
Readme
Amaze UI Tree
Amaze UI Tree 插件。
使用说明:
- 获取 Amaze UI Tree
- 直接下载
- 使用 NPM:
npm install amazeui-tree
- 在 Amaze UI 样式之后引入 Tree 样式(
dist
目录下的 CSS):
Amaze UI Tree 依赖 Amaze UI 样式。
<link rel="stylesheet" href="path/to/amazeui.min.css"/>
<link rel="stylesheet" href="path/to/amazeui.tree.min.css"/>
- 在 jQuery 之后引入 Tree 插件(
dist
目录下的 JS):
<script src="path/to/jquery.min.js"></script>
<script src="path/to/amazeui.tree.min.js"></script>
- 初始化 Tree:
$(function() {
$('#my-tree').tree();
});