bootstrap树形菜单

效果图

图

 

<!DOCTYPE html>
<html lang="en">

<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>Document</title>
  <style>
    .tree {
      min-height: 20px;
      padding: 19px;
      margin-bottom: 20px;
      background-color: #fbfbfb;
      border: 1px solid #999;
      -webkit-border-radius: 4px;
      -moz-border-radius: 4px;
      border-radius: 4px;
      -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
      -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
      box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05)
    }

    .tree li {
      list-style-type: none;
      margin: 0;
      padding: 10px 5px 0 5px;
      position: relative
    }

    .tree li::before,
    .tree li::after {
      content: '';
      left: -20px;
      position: absolute;
      right: auto
    }

    .tree li::before {
      border-left: 1px solid #999;
      bottom: 50px;
      height: 100%;
      top: 0;
      width: 1px
    }

    .tree li::after {
      border-top: 1px solid #999;
      height: 20px;
      top: 25px;
      width: 25px
    }

    .tree li span {
      -moz-border-radius: 5px;
      -webkit-border-radius: 5px;
      border: 1px solid #999;
      border-radius: 5px;
      display: inline-block;
      padding: 3px 8px;
      text-decoration: none
    }

    .tree li.parent_li>span {
      cursor: pointer
    }

    .tree>ul>li::before,
    .tree>ul>li::after {
      border: 0
    }

    .tree li:last-child::before {
      height: 30px
    }

    .tree li.parent_li>span:hover,
    .tree li.parent_li>span:hover+ul li span {
      background: #eee;
      border: 1px solid #94a0b4;
      color: #000
    }
  </style>
</head>

<body>
  <div class="main">
    <div class="panel panel-default">
      <div class="panel-body">
        <div class="col-md-5">
          <div class="tree well">
            <ul>
              <li class="parent_li">
                <span title="Collapse this branch badge-success"><i
                    class="icon-folder-open"></i>老大</span>
                <a href="">跳转占位</a>
                <ul>
                  <li class="parent_li">
                    <span title="Collapse this branch"><i class="icon-minus-sign"></i> 1级</span>
                    <a href="">跳转占位</a>
                    <ul>
                      <li>
                        <span><i class="icon-leaf"></i> 2级</span>
                        <a href="">跳转占位</a>
                        </li>
                      </ul>
                    </li>
                  <li class="parent_li">
                    <span title="Collapse this branch"><i class="icon-minus-sign"></i> 1级</span>
                    <a href="">跳转占位</a>
                    <ul>
                      <li>
                        <span><i class="icon-leaf"></i> 2级</span>
                        <a href="">跳转占位</a>
                        </li>
                      <li class="parent_li">
                        <span title="Collapse this branch"><i class="icon-minus-sign"></i>
                          2级</span>
                        <a href="">跳转占位</a>
                        <ul>
                          <li class="parent_li">
                            <span title="Collapse this branch"><i
                                class="icon-minus-sign"></i> 3级</span>
                            <a href="">跳转占位</a>
                            <ul>
                              <li>
                                <span><i class="icon-leaf"></i> 4级</span>
                                <a href="">跳转占位</a>
                                </li>
                              <li>
                                <span><i class="icon-leaf"></i> 4级</span>
                                <a href="">跳转占位</a>
                                </li>
                              </ul>
                            </li>
                          <li>
                            <span><i class="icon-leaf"></i> 3级</span>
                            <a href="">跳转占位</a>
                            </li>
                          <li>
                            <span><i class="icon-leaf"></i> 3级</span>
                            <a href="">跳转占位</a>
                            </li>
                          </ul>
                        </li>
                      <li>
                        <span><i class="icon-leaf"></i> 2级</span>
                        <a href="">跳转占位</a>
                        </li>
                      </ul>
                    </li>
                  </ul>
                </li>
              <li class="parent_li">
                <span title="Collapse this branch"><i class="icon-folder-open"></i> Parent2</span>
                <a href="">跳转占位</a>
                <ul>
                  <li>
                    <span><i class="icon-leaf"></i> 1级</span>
                    <a href="">跳转占位</a>
                    </li>
                  </ul>
                </li>
              </ul>
            </div>
          </div>
        <div>
          </div>
        </div>
      </div>
    </div>
</body>
<script src="http://libs.baidu.com/jquery/2.0.0/jquery.min.js"></script>
<script type="text/javascript">
  //<![CDATA[
  $(window).load(function () {
    $(function () {
      $('.tree li:has(ul)').addClass('parent_li').find(' > span').attr('title', 'Collapse this branch');
      $('.tree li.parent_li > span').on('click', function (e) {
        var children = $(this).parent('li.parent_li').find(' > ul > li');
        if (children.is(":visible")) {
          children.hide('fast');
          $(this).attr('title', 'Expand this branch').find(' > i').addClass('icon-plus-sign').removeClass('icon-minus-sign');
        } else {
          children.show('fast');
          $(this).attr('title', 'Collapse this branch').find(' > i').addClass('icon-minus-sign').removeClass('icon-plus-sign');
        }
        e.stopPropagation();
      });
    });
  }); //]]>
</script>
<script>
  // tell the embed parent frame the height of the content
  if (window.parent && window.parent.parent) {
    window.parent.parent.postMessage(["resultsFrame", {
      height: document.body.getBoundingClientRect().height,
      slug: "wu4askwa"
    }], "*")
  }
</script>

</html>

 

  • 1
    点赞
  • 3
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值