我想使用 CSS 和 HTML 在屏幕上“绘制”树,而不是以任何方式或数据结构表示它......
问问题
9859 次
2 回答
27
使用css无限二叉树和单层树
演示:http: //jsfiddle.net/Limitlessisa/5Lhb0ron/
html:
<div class="tree">
<ul>
<li>
<div><input type="checkbox"> Main <br/> <button> Test Btn </button></div>
<ul>
<li>
<div><input type="checkbox"> Sub-1</div>
</li>
<li>
<div><input type="checkbox"> Sub-2</div>
<ul>
<li>
<div><input type="checkbox"> Sub-2-1</div>
</li>
<li>
<div><input type="checkbox"> Sub-2-2</div>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
CSS:
<style>
.tree ul {
padding-top: 20px; position: relative;
transition: all 0.5s;
-webkit-transition: all 0.5s;
-moz-transition: all 0.5s;
}
.tree li {
float: left; text-align: center;
list-style-type: none;
position: relative;
padding: 20px 5px 0 5px;
transition: all 0.5s;
-webkit-transition: all 0.5s;
-moz-transition: all 0.5s;
}
.tree li::before, .tree li::after{
content: '';
position: absolute; top: 0; right: 50%;
border-top: 1px solid #ccc;
width: 50%; height: 20px;
}
.tree li::after{
right: auto; left: 50%;
border-left: 1px solid #ccc;
}
.tree li:only-child::after, .tree li:only-child::before {
display: none;
}
.tree li:only-child{ padding-top: 0;}
.tree li:first-child::before, .tree li:last-child::after{
border: 0 none;
}
.tree li:last-child::before{
border-right: 1px solid #ccc;
border-radius: 0 5px 0 0;
-webkit-border-radius: 0 5px 0 0;
-moz-border-radius: 0 5px 0 0;
}
.tree li:first-child::after{
border-radius: 5px 0 0 0;
-webkit-border-radius: 5px 0 0 0;
-moz-border-radius: 5px 0 0 0;
}
.tree ul ul::before{
content: '';
position: absolute; top: 0; left: 50%;
border-left: 1px solid #ccc;
width: 0; height: 20px;
}
.tree li div{
border: 1px solid #ccc;
padding: 5px 10px;
text-decoration: none;
color: #666;
font-family: arial, verdana, tahoma;
font-size: 11px;
display: inline-block;
border-radius: 5px;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
transition: all 0.5s;
-webkit-transition: all 0.5s;
-moz-transition: all 0.5s;
}
.tree li div:hover, .tree li div:hover+ul li div {
background: #c8e4f8; color: #000; border: 1px solid #94a0b4;
}
.tree li div:hover+ul li::after,
.tree li div:hover+ul li::before,
.tree li div:hover+ul::before,
.tree li div:hover+ul ul::before{
border-color: #94a0b4;
}
</style>
于 2015-06-27T10:26:18.787 回答
2
使用 HTML 和 CSS 创建树状结构的一种非常简单<div>
的方法是嵌套s
每个div
代表一个节点,并且内部可以有多个节点:
<div> //root
<div> //child 1
<div> //child 1.1
<div></div> //child 1.1.1
<div></div> //child 1.1.2
<div></div> //child 1.1.3
</div>
<div></div> //child 1.2
</div>
<div></div> //child 2
</div>
然后您可以将 a 添加margin-top
到所有 div 中,以便它们出现在其父 div 下。
一个 JSFiddle:http: //jsfiddle.net/VxRmc/
我为每个 div 添加了百分比宽度。如果您知道一个节点有多少个子节点,则可以计算宽度。或者您可以使用固定宽度...
是的,它不是一棵美丽的树,但它再简单不过了。
于 2013-02-21T11:23:54.477 回答