ट्विटर बूटस्ट्रैप में पेड़ [बंद]


108

मैं एक ट्री (डायरेक्टरी ट्री की तरह) बनाने पर काम करने की कोशिश कर रहा हूं जो सीएसएस का उपयोग करता है और जितना संभव हो उतना कम जेएस (केवल राज्यों, आदि के लिए), और मैं यह जानना चाहता हूं कि क्या बूटस्ट्रैप के लिए कुछ अच्छे मौजूदा ट्री प्लग हैं या jquery-ui बूटस्ट्रैप


संदर्भ के लिए या इस प्रश्न के बारे में भ्रमित लोगों के लिए, मैं बूटस्ट्रैप के लिए डायनाट्री जैसी चीज की तलाश कर रहा हूं ।

जवाबों:


181

विटाली के सीएसएस और मेहमेट के jQuery पर बिल्डिंग , मैंने aटैग को spanटैग में बदल दिया और कुछ ग्लिफ़िकॉन को शामिल किया और बूटस्ट्रैप ट्री विजेट पर मेरे ले जाने में बैजिंग की

उदाहरण: मेरा बूटस्ट्रैप ट्री विजेट पर लिया गया है

अतिरिक्त क्रेडिट के लिए, मैंने गीथूब आइकनjQuery और LESS कोड को होस्ट करने के लिए एक GitHub प्रोजेक्ट बनाया है जो बूटस्ट्रैप में इस ट्री घटक को जोड़ने के लिए जाता है । कृपया http://jhfrench.github.io/bootstrap-tree/docs/example.html पर प्रोजेक्ट दस्तावेज़ देखें ।

वैकल्पिक रूप से, यहां CSS (जेएस को jsFiddle से उठाया जा सकता है ) उत्पन्न करने के लिए LESS स्रोत है :

@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जो अपनी पृष्ठभूमि का रंग खो देते हैं और ग्रे हो जाते हैं जब उनके माता-पिता को आपके दूसरे पेड़ पर मंडराया जाता है।
कुमारहर्ष

धन्यवाद @ हर्ष। होवर का व्यवहार जो आपको अजीब लगता है, वह विटाली की प्रोग्रामिंग का अनुसरण करता है ताकि उपयोगकर्ता को एक दृश्य संकेतक दिया जा सके जिसमें नोड्स ढह जाएंगे।
जेरॉमी फ्रेंच

1
@JeromyFrench इस पेड़ का बहुत अच्छा, चिकना अनुभव है। जब मैंने खोजा था तब वास्तव में मैं क्या था। अच्छा कार्य।
नाथन मूस

5
कोड के लिए धन्यवाद। आप कैसे संक्षिप्त करते हैं? जब आप उस पृष्ठ पर जाते हैं तो मैं चाहता हूं कि उसका पतन हो जाए? क्या आप मेरी मदद कर सकते हैं? धन्यवाद।
एर्डेम एसे

5
jsfiddle.net/jayhilwig/hv8vU :: मैंने कोड को अपडेट किया और बूटस्ट्रैप 3.0 के लिए एक नई
फ़ाइडल को

79

क्या आप विश्वास कर सकते हैं कि नीचे दी गई छवि पर ट्रीव्यू किसी भी जावास्क्रिप्ट का उपयोग नहीं करता है, लेकिन केवल CSS3 पर निर्भर करता है? इस CSS3 के ट्री व्यू को देखें , जो ट्विटर बूटस्ट्रैप के साथ अच्छा है:

ट्री व्यू

आप इसके बारे में अधिक जानकारी यहाँ http://acidmartin.wordpress.com/2011/09/26/css3-treevew-no-javascript/ पर प्राप्त कर सकते हैं ।


वाह ... यह एक अच्छा है ... मुझे इस पर गौर करना होगा ... धन्यवाद ...
कुमारहर्ष

1
@ हर्ष ज़रूर, इसका बूटस्ट्रैप तैयार है और यदि यह मददगार है तो कृपया मेरे उत्तर को स्वीकार करें। :) PS: हम इसका उपयोग कर रहे हैं। :)
प्रवीण कुमार पुरुषोत्तम

समाधान अच्छा लगता है, लेकिन कुछ विशेषताएं हैं, जो हम चाहते थे और इस संस्करण में आपूर्ति नहीं की जाती हैं, जैसे कि शाखा हाइलाइटिंग, आदि। लेकिन वैसे भी, यह पेड़ स्टाइल करने का एक बहुत अच्छा उदाहरण है
कुमारहर्ष

1
एक अच्छा उदाहरण मिला है acssninja.com/demo/css_tree
surya

1
इस बात पर ध्यान देने के लिए कि उत्तर में निर्दिष्ट ब्लॉग पोस्ट में कुछ सरल सीएसएस शामिल हैं, जो मेरे लिए काम नहीं करता है, लेकिन वास्तविक डेमो में कुछ अधिक जटिल (और समझाया नहीं गया) सीएसएस शामिल हैं।
रॉबिन ग्रीन

53

यदि कोई हर्ष के उत्तर से ट्रीव्यू का वर्टिकल संस्करण चाहता है, तो आप कुछ समय बचा सकते हैं:

http://jsfiddle.net/Fh47n/

.tree li {
    margin: 0px 0;

    list-style-type: none;
    position: relative;
    padding: 20px 5px 0px 5px;
}

.tree li::before{
    content: '';
    position: absolute; 
    top: 0;
    width: 1px; 
    height: 100%;
    right: auto; 
    left: -20px;
    border-left: 1px solid #ccc;
    bottom: 50px;
}
.tree li::after{
    content: '';
    position: absolute; 
    top: 30px; 
    width: 25px; 
    height: 20px;
    right: auto; 
    left: -20px;
    border-top: 1px solid #ccc;
}
.tree li a{
    display: inline-block;
    border: 1px solid #ccc;
    padding: 5px 10px;
    text-decoration: none;
    color: #666;
    font-family: arial, verdana, tahoma;
    font-size: 11px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
}

/*Remove connectors before root*/
.tree > ul > li::before, .tree > ul > li::after{
    border: 0;
}
/*Remove connectors after last child*/
.tree li:last-child::before{ 
      height: 30px;
}

/*Time for some hover effects*/
/*We will apply the hover effect the the lineage of the element also*/
.tree li a:hover, .tree li a:hover+ul li a {
    background: #c8e4f8; color: #000; border: 1px solid #94a0b4;
}
/*Connector styles on hover*/
.tree li a:hover+ul li::after, 
.tree li a:hover+ul li::before, 
.tree li a:hover+ul::before, 
.tree li a:hover+ul ul::before{
    border-color:  #94a0b4;
}

1
सरल और सुरुचिपूर्ण। अपवित्र :)
thefourtheye

1
बस सही समाधान!
कॉर्सिअर

वाह, महान समाधान - और आसानी से एक्स्टेंसिबल!
rkallensee

पतन विस्तार कार्यक्षमता कहां है?
सैयद अकील आशिक

41

अभी भी CSS3 के साथ एक पेड़ की खोज करने वालों के लिए, यह नेट पर मुझे मिला एक शानदार टुकड़ा है:

http://thecodeplayer.com/walkthrough/css3-family-tree

एचटीएमएल

<div class="tree">
  <ul>
    <li>
      <a href="#">Parent</a>
      <ul>
        <li>
          <a href="#">Child</a>
          <ul>
            <li>
              <a href="#">Grand Child</a>
            </li>
          </ul>
        </li>
        <li>
          <a href="#">Child</a>
          <ul>
            <li><a href="#">Grand Child</a></li>
            <li>
              <a href="#">Grand Child</a>
              <ul>
                <li>
                  <a href="#">Great Grand Child</a>
                </li>
                <li>
                  <a href="#">Great Grand Child</a>
                </li>
                <li>
                  <a href="#">Great Grand Child</a>
                </li>
              </ul>
            </li>
            <li><a href="#">Grand Child</a></li>
          </ul>
        </li>
      </ul>
    </li>
  </ul>
</div>

सीएसएस

* {margin: 0; padding: 0;}

.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;
}

/*We will use ::before and ::after to draw the connectors*/

.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;
}

/*We need to remove left-right connectors from elements without 
any siblings*/
.tree li:only-child::after, .tree li:only-child::before {
  display: none;
}

/*Remove space from the top of single children*/
.tree li:only-child{ padding-top: 0;}

/*Remove left connector from first child and 
right connector from last child*/
.tree li:first-child::before, .tree li:last-child::after{
  border: 0 none;
}
/*Adding back the vertical connector to the last nodes*/
.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;
}

/*Time to add downward connectors from parents*/
.tree ul ul::before{
  content: '';
  position: absolute; top: 0; left: 50%;
  border-left: 1px solid #ccc;
  width: 0; height: 20px;
}

.tree li a{
  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;
}

/*Time for some hover effects*/
/*We will apply the hover effect the the lineage of the element also*/
.tree li a:hover, .tree li a:hover+ul li a {
  background: #c8e4f8; color: #000; border: 1px solid #94a0b4;
}
/*Connector styles on hover*/
.tree li a:hover+ul li::after, 
.tree li a:hover+ul li::before, 
.tree li a:hover+ul::before, 
.tree li a:hover+ul ul::before{
  border-color:  #94a0b4;
}

पुनश्च: कोड के अलावा, मुझे यह भी पसंद है कि जिस तरह से साइट इसे कार्रवाई में दिखाती है ... वास्तव में अभिनव।


5
यह वास्तव में आपके प्रश्न में सुझाए गए पेड़ के प्रकार की तरह कुछ भी नहीं है। मेरा मानना ​​है कि प्रवीण कुमार को उनके जवाब से सम्मानित किया जाना चाहिए
Blowsie

2
मैं पहले की तरह एक पेड़ की तलाश में था, इस जवाब को देखा, और इसके बजाय इसका उपयोग करने का फैसला किया। मजेदार यह है कि प्रेरणा एक समाधान कैसे बदल सकती है!
एरिक

2
@ बालोशी: मैंने आपके सुझाव को ध्यान में रखा है और न्याय दिया गया है, योग्य। कुछ यादृच्छिक आदमी द्वारा कुछ यादृच्छिक अनुरोध के कारण एक स्टैंडअलोन परियोजना को विकसित करने के लिए इसका अच्छा है।
कुमारहर्ष


36

अगर कोई विटाली बायचिक के जवाब से ट्रीव्यू के विस्तार योग्य / बंधनेवाला संस्करण चाहता है, तो आप कुछ समय बचा सकते हैं :)

http://jsfiddle.net/mehmetatas/fXzHS/2/

$(function () {
    $('.tree li').hide();
    $('.tree li:first').show();
    $('.tree li').on('click', function (e) {
        var children = $(this).find('> ul > li');
        if (children.is(":visible")) children.hide('fast');
        else children.show('fast');
        e.stopPropagation();
    });
});

:) अच्छा! अच्छा विचार +1।
एलेक्स

1
मैंने $ ('ट्री। उल> ली: फर्स्ट-चाइल्ड') जोड़ा। शो (); पृष्ठ पर कई पेड़ों का समर्थन करने के लिए। धन्यवाद
tribe84

8

एक और महान ट्रीव्यू jquery प्लगइन http://www.jstree.com/ है

एक अग्रिम दृश्य के लिए आपको jquery-treetable http://ludo.cubicphuse.nl/jquery-plugins/treeTable/doc/ की जांच करनी चाहिए


साइट के अनुसार, यह समर्थित नहीं किया जा रहा है किसी भी अप्रैल 2010 के बाद और अधिक
levelnis

ओह इसकी शर्म की बात है कि इसका समर्थन नहीं किया जा रहा है ... हालांकि अच्छा लग रहा है।
कुम्हारशाह

3
नमस्ते, दोनों पुस्तकालय अप टू डेट हैं और समर्थित हैं
गैल मार्गालिट

उनका समर्थन किया जाता है - देखें github.com/ludo/jquery-treetable/releases
बार्टेक Jablonski
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.