6

有没有使用 Twitter Bootstrap 和 Backbone.js 构建的简单模块化树,提供通用的树控制功能?

4

2 回答 2

3

这是一个 Bootstrap 树小部件(来自“ Twitter Bootstrap 中的树”):

Vitaliy 的 CSSMehmet 的 jQuery 的基础上,我将a标签更改为标签,并在我的 Bootstrap 树小部件span中加入了一些Glyphicons徽章

例子: 我对 Bootstrap 树小部件的看法

为了获得额外的荣誉,我创建了一个GitHub 项目来托管用于将此树组件添加到 Bootstrap 的 jQuery 和 LESS 代码。请参阅http://jhfrench.github.io/bootstrap-tree/docs/example.html上的项目文档。

或者,这里是生成 CSS 的 LESS 源(可以从jsFiddle获取 JS ):

@import "../../../external/bootstrap/less/bootstrap.less"; /* substitute your path to the bootstrap.less file */
@import "../../../external/bootstrap/less/responsive.less"; /* optional; substitute your path to the responsive.less file */

/* collapsable tree */
.tree {
    .border-radius(@baseBorderRadius);
    .box-shadow(inset 0 1px 1px rgba(0,0,0,.05));
    background-color: lighten(@grayLighter, 5%);
    border: 1px solid @grayLight;
    margin-bottom: 10px;
    max-height: 300px;
    min-height: 20px;
    overflow-y: auto;
    padding: 19px;
    a {
        display: block;
        overflow: hidden;
        text-overflow: ellipsis;
        width: 90%;
    }
    li {
        list-style-type: none;
        margin: 0px 0;
        padding: 4px 0px 0px 2px;
        position: relative;
        &::before, &::after {
            content: '';
            left: -20px;
            position: absolute;
            right: auto;
        }
        &::before {
            border-left: 1px solid @grayLight;
            bottom: 50px;
            height: 100%;
            top: 0;
            width: 1px;
        }
        &::after {
            border-top: 1px solid @grayLight;
            height: 20px;
            top: 13px;
            width: 23px;
        }
        span {
            -moz-border-radius: 5px;
            -webkit-border-radius: 5px;
            border: 1px solid @grayLight;
            border-radius: 5px;
            display: inline-block;
            line-height: 14px;
            padding: 2px 4px;
            text-decoration: none;
        }
        &.parent_li > span {
            cursor: pointer;
            /*Time for some hover effects*/
            &:hover, &:hover+ul li span {
                background: @grayLighter;
                border: 1px solid @gray;
                color: #000;
            }
        }
        /*Remove connectors after last child*/
        &:last-child::before {
            height: 30px;
        }
    }
    /*Remove connectors before root*/
    > ul > li::before, > ul > li::after {
        border: 0;
    }
}
于 2013-06-13T16:20:59.570 回答
1

我最近发布了我的主干.js 树小部件。在https://bitbucket.org/dnation/bbtree/上查看它,看看它是否满足您的需求。

于 2012-10-17T21:17:07.200 回答