Sobre la base de CSS de Vitaliy y jQuery de Mehmet , cambié las a
etiquetas a span
etiquetas e incorporé algunas Glyphicons e insignias en mi versión de un widget de árbol Bootstrap .
Ejemplo:
Para obtener crédito adicional, he creado un proyecto de GitHub para alojar el código jQuery y LESS que se utiliza para agregar este componente de árbol a Bootstrap. Consulte la documentación del proyecto en http://jhfrench.github.io/bootstrap-tree/docs/example.html .
Alternativamente, aquí está la fuente MENOS para generar ese CSS (el JS se puede recoger de jsFiddle ):
@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;
}
}
.parent_li
que pierden su color de fondo y se vuelven grises cuando se pasa el cursor sobre su padre (en su segundo árbol).Puede obtener más información sobre esto aquí http://acidmartin.wordpress.com/2011/09/26/css3-treevew-no-javascript/ .
fuente
Si alguien quiere una versión vertical de la vista de árbol de la respuesta de Harsh, puede ahorrar algo de tiempo:
http://jsfiddle.net/Fh47n/
fuente
Para aquellos que aún buscan un árbol con CSS3, este es un código fantástico que encontré en la red:
http://thecodeplayer.com/walkthrough/css3-family-tree
HTML
CSS
PD: además del código, también me gusta la forma en que el sitio lo muestra en acción ... realmente innovador.
fuente
Si alguien quiere una versión expandible / plegable de la vista de árbol de la respuesta de Vitaliy Bychik, puede ahorrar algo de tiempo :)
http://jsfiddle.net/mehmetatas/fXzHS/2/
fuente
Otro gran complemento jquery de Treeview es http://www.jstree.com/
Para obtener una vista avanzada, debe consultar jquery-treetable
http://ludo.cubicphuse.nl/jquery-plugins/treeTable/doc/
fuente