Jump to content
  • 0

Многоуровневое дерево на CSS


klierik
 Share

Question

Доброго.

Что-то не получается найти примерчик

обычного дерева, как в проводнике, реализованный на CSS.

если есть у кого что-то на примете, подкиньте линк, плиз.

tnx u

Link to comment
Share on other sites

5 answers to this question

Recommended Posts

  • 0

можно уточняющий вопрос?

Вам нужно чтоб список раскрывался по щелчку мыши?

Тогда чисто на CSS без JS это не реализуемо (onclick это уже JS).

Вот удачный пример списка с JS

http://xhtml.ru/2007/04/29/compact-list/

Link to comment
Share on other sites

  • 0

все очень благодарен :)

так же вопрос по теме, да бы не создавать отдельный топ.

почему, при нажатии на маркер списка, выделяется его содержимое?

как это можно присеч?

upd: проблема в FF

upd2:

верстая дерево, нашел довольно необычный баг в IE

css:

/*** x-tree ***/
.x-tree, .x-tree * {
margin: 0px;
padding: 0px;
}
/** defaults **/
.x-tree ul {
list-style: none;
list-style-image: url(../images/x-tree-ico-plus.gif); /* default marker for all items */
margin-left: 13px;

margin-left: expression('16px');
}
.x-tree li {
background-image: url(../images/x-tree-ico-dir-closed.gif); /* default ico for items */
background-position: 0 middle;
background-repeat: no-repeat;
font: normal 11px tahoma;
color: #000;
padding-left: 19px;
cursor: pointer;
margin: 1px 0;
height: 17px;

/*border: 1px solid #ccc;*/
/*background-color: #eee;*/

_cursor: hand;
}
.x-tree ul ul {
margin-top: 2px;
margin-bottom: 0px;
margin-left: 2px;
}

/** events **/
.x-tree li.opened {
list-style-image: url(../images/x-tree-ico-minus.gif);
height: auto;
}
.x-tree li.closed {
list-style-image: url(../images/x-tree-ico-plus.gif);
}

/** types **/
.x-tree li.empty {
list-style: none;
}
.x-tree li.notype ul, .x-tree li.notype {
margin-left: 0px;
list-style: none;
background-image: none;
}

html:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1251" />
<title>x-tree</title>
<link rel="stylesheet" href="css/x-tree.css" type="text/css" />
</head>

<body>

<!-- x-tree -->
<div class="x-tree">

<ul>
<li> <input type="checkbox" value="" /> root item 4</li>
<li class="opened"> <input type="checkbox" value="" /> root item 5

<!-- 1`st inner -->
<ul>
<li> <input type="checkbox" value="" /> 1`st inner item 1</li>
<li class="opened"> <input type="checkbox" value="" /> 1`st inner item 2

<!-- 2`nd inner item -->
<ul>
<li> <input type="checkbox" value="" /> 2`nd inner item 1</li>
<li class="notype"> <input type="checkbox" value="" /> 2`nd inner item 2</li>
<li class="notype"> <input type="checkbox" value="" /> 2`nd inner item 3</li>
</ul>

</li>
<li> <input type="checkbox" value="" /> 1`st inner item 3</li>
</ul>

</li>
</ul>

</div>
<!-- /x-tree -->

</body>
</html>

баг заключаеться в том, что у елементов, которым присвоен класс empty не пропадает маркер.

есть идеи как побороть IE? :)

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy