in English

ढहल

कुछ क्लास आ हमनी के जावास्क्रिप्ट प्लगइन के साथ अपना पूरा प्रोजेक्ट में सामग्री के दृश्यता के टॉगल करीं।

कइसे काम करेला

संकुचित जावास्क्रिप्ट प्लगइन के इस्तेमाल सामग्री देखावे आ छिपावे खातिर कइल जाला. बटन भा एंकर के इस्तेमाल ट्रिगर के रूप में कइल जाला जे आपके टॉगल करे वाला बिसेस तत्व सभ के मैप कइल जाला। कवनो तत्व के संकुचित कइला heightसे ओकर वर्तमान मान से 0. paddingई देखत कि CSS एनीमेशन के कइसे संभाले ला, रउआँ कौनों .collapseतत्व पर इस्तेमाल ना कर सके लीं । एकरे बजाय, क्लास के एगो स्वतंत्र रैपिंग तत्व के रूप में इस्तेमाल करीं।

एह घटक के एनीमेशन प्रभाव prefers-reduced-motionमीडिया क्वेरी पर निर्भर होला। हमनी के सुलभता दस्तावेज के रिड्यूस्ड मोशन सेक्शन देखल जाव .

उदाहरण

क्लास बदलाव के माध्यम से कौनों अउरी तत्व के देखावे आ छिपावे खातिर नीचे दिहल बटन सभ पर क्लिक करीं:

  • .collapseसामग्री के छिपावेला
  • .collapsingसंक्रमण के दौरान लागू कइल जाला
  • .collapse.showसामग्री देखावत बा

data-targetआम तौर पर, हमनी के एट्रिब्यूट वाला बटन के इस्तेमाल करे के सलाह देत बानी जा । जबकि शब्दार्थ के दृष्टिकोण से अनुशंसित ना कइल जाला, आप hrefविशेषता (आ एगो role="button") वाला लिंक के भी इस्तेमाल कर सकत बानी। दुनो मामला में, द data-toggle="collapse"के जरूरत बा।

Some placeholder content for the collapse component. This panel is hidden by default but revealed when the user activates the relevant trigger.
<p>
  <a class="btn btn-primary" data-toggle="collapse" href="#collapseExample" role="button" aria-expanded="false" aria-controls="collapseExample">
    Link with href
  </a>
  <button class="btn btn-primary" type="button" data-toggle="collapse" data-target="#collapseExample" aria-expanded="false" aria-controls="collapseExample">
    Button with data-target
  </button>
</p>
<div class="collapse" id="collapseExample">
  <div class="card card-body">
    Some placeholder content for the collapse component. This panel is hidden by default but revealed when the user activates the relevant trigger.
  </div>
</div>

क्षैतिज

कोलैप्स प्लगइन क्षैतिज कोलैप्सिंग के भी सपोर्ट करेला। के बजाय के .widthसंक्रमण करे खातिर संशोधक वर्ग जोड़ीं आ तत्काल चाइल्ड तत्व पर a सेट करीं । बेझिझक आपन कस्टम Sass लिखीं, इनलाइन शैली के इस्तेमाल करीं, भा हमनी के चौड़ाई उपयोगिता के इस्तेमाल करीं .widthheightwidth

कृपया ध्यान दीं कि जबकि नीचे दिहल उदाहरण min-heightमें हमनी के डॉक्स में बेसी रिपेंट से बचे खातिर सेट बा, एकर स्पष्ट रूप से जरूरी नइखे। खाली widthऑन द चाइल्ड तत्व के जरूरत बा।

This is some placeholder content for a horizontal collapse. It's hidden by default and shown when triggered.
<p>
  <button class="btn btn-primary" type="button" data-toggle="collapse" data-target="#collapseWidthExample" aria-expanded="false" aria-controls="collapseWidthExample">
    Toggle width collapse
  </button>
</p>
<div style="min-height: 120px;">
  <div class="collapse width" id="collapseWidthExample">
    <div class="card card-body" style="width: 320px;">
      This is some placeholder content for a horizontal collapse. It's hidden by default and shown when triggered.
    </div>
  </div>
</div>

कई गो निशाना बनावल गइल बा

<button>या अपना या एट्रिब्यूट <a>में जेक्वेरी चयनकर्ता के साथ संदर्भित क के कई गो तत्व सभ के देखा सके ला आ छिपा सके ला। कई गो या कौनों तत्व के देखा सके ला आ छिपा सके ला अगर ऊ लोग हर केहू ओकरा के अपना या बिसेसता के साथ संदर्भित करेhrefdata-target<button><a>hrefdata-target

Some placeholder content for the first collapse component of this multi-collapse example. This panel is hidden by default but revealed when the user activates the relevant trigger.
Some placeholder content for the second collapse component of this multi-collapse example. This panel is hidden by default but revealed when the user activates the relevant trigger.
<p>
  <a class="btn btn-primary" data-toggle="collapse" href="#multiCollapseExample1" role="button" aria-expanded="false" aria-controls="multiCollapseExample1">Toggle first element</a>
  <button class="btn btn-primary" type="button" data-toggle="collapse" data-target="#multiCollapseExample2" aria-expanded="false" aria-controls="multiCollapseExample2">Toggle second element</button>
  <button class="btn btn-primary" type="button" data-toggle="collapse" data-target=".multi-collapse" aria-expanded="false" aria-controls="multiCollapseExample1 multiCollapseExample2">Toggle both elements</button>
</p>
<div class="row">
  <div class="col">
    <div class="collapse multi-collapse" id="multiCollapseExample1">
      <div class="card card-body">
        Some placeholder content for the first collapse component of this multi-collapse example. This panel is hidden by default but revealed when the user activates the relevant trigger.
      </div>
    </div>
  </div>
  <div class="col">
    <div class="collapse multi-collapse" id="multiCollapseExample2">
      <div class="card card-body">
        Some placeholder content for the second collapse component of this multi-collapse example. This panel is hidden by default but revealed when the user activates the relevant trigger.
      </div>
    </div>
  </div>
</div>

अकॉर्डियन के उदाहरण दिहल गइल बा

कार्ड घटक के इस्तेमाल से , आप डिफ़ॉल्ट संकुचन व्यवहार के बढ़ा के अकॉर्डियन बना सकत बानी। अकॉर्डियन स्टाइल के सही तरीका से हासिल करे खातिर .accordionरैपर के रूप में जरूर इस्तेमाल करीं।

पहिला अकॉर्डियन पैनल खातिर कुछ प्लेसहोल्डर सामग्री। ई पैनल डिफ़ॉल्ट रूप से देखावल गइल बा, .showक्लास के बदौलत।

Some placeholder content for the second accordion panel. This panel is hidden by default.

And lastly, the placeholder content for the third and final accordion panel. This panel is hidden by default.
<div class="accordion" id="accordionExample">
  <div class="card">
    <div class="card-header" id="headingOne">
      <h2 class="mb-0">
        <button class="btn btn-link btn-block text-left" type="button" data-toggle="collapse" data-target="#collapseOne" aria-expanded="true" aria-controls="collapseOne">
          Collapsible Group Item #1
        </button>
      </h2>
    </div>

    <div id="collapseOne" class="collapse show" aria-labelledby="headingOne" data-parent="#accordionExample">
      <div class="card-body">
        Some placeholder content for the first accordion panel. This panel is shown by default, thanks to the <code>.show</code> class.
      </div>
    </div>
  </div>
  <div class="card">
    <div class="card-header" id="headingTwo">
      <h2 class="mb-0">
        <button class="btn btn-link btn-block text-left collapsed" type="button" data-toggle="collapse" data-target="#collapseTwo" aria-expanded="false" aria-controls="collapseTwo">
          Collapsible Group Item #2
        </button>
      </h2>
    </div>
    <div id="collapseTwo" class="collapse" aria-labelledby="headingTwo" data-parent="#accordionExample">
      <div class="card-body">
        Some placeholder content for the second accordion panel. This panel is hidden by default.
      </div>
    </div>
  </div>
  <div class="card">
    <div class="card-header" id="headingThree">
      <h2 class="mb-0">
        <button class="btn btn-link btn-block text-left collapsed" type="button" data-toggle="collapse" data-target="#collapseThree" aria-expanded="false" aria-controls="collapseThree">
          Collapsible Group Item #3
        </button>
      </h2>
    </div>
    <div id="collapseThree" class="collapse" aria-labelledby="headingThree" data-parent="#accordionExample">
      <div class="card-body">
        And lastly, the placeholder content for the third and final accordion panel. This panel is hidden by default.
      </div>
    </div>
  </div>
</div>

सुलभता के क्षमता बा

aria-expandedनियंत्रण तत्व में जरूर जोड़ल जाला। ई बिसेसता स्क्रीन रीडर आ अइसने सहायक तकनीक सभ के नियंत्रण से जुड़ल संकुचित तत्व के वर्तमान स्थिति के स्पष्ट रूप से बतावे ला। अगर संकुचित तत्व डिफ़ॉल्ट रूप से बंद होखे तब नियंत्रण तत्व पर विशेषता के मान होखे के चाहीं aria-expanded="false"showअगर रउआँ क्लास के इस्तेमाल से डिफ़ॉल्ट रूप से खोले खातिर संकुचित तत्व के सेट कइले बानी , aria-expanded="true"एकरे बजाय नियंत्रण पर सेट करीं। प्लगइन एह बिसेसता के नियंत्रण पर स्वचालित रूप से टॉगल करी जे एह आधार पर होखी कि संकुचन करे लायक तत्व खोलल गइल बा कि ना (जावास्क्रिप्ट के माध्यम से, या एह से कि प्रयोगकर्ता कौनों अउरी नियंत्रण तत्व के ट्रिगर कइले बा जे ओही संकुचित तत्व से भी जुड़ल बा)। अगर कंट्रोल एलिमेंट के एचटीएमएल एलिमेंट बटन ना होखे (जइसे कि, एगो <a>या <div>), त एट्रिब्यूटrole="button"तत्व में जोड़ल जाव.

अगर राउर नियंत्रण तत्व कवनो एकल संकुचित तत्व के लक्षित कर रहल बा – यानी विशेषता कवनो चयनकर्ता data-targetके ओर इशारा कर रहल बा – त रउआ विशेषता के नियंत्रण तत्व में जोड़ल जाव, जवना में संकुचित तत्व के होखे। आधुनिक स्क्रीन रीडर आ अइसने सहायक तकनीक सभ एह बिसेसता के इस्तेमाल करे लीं जेह से कि प्रयोगकर्ता लोग के खुद संकुचित तत्व पर सीधे नेविगेट करे खातिर अतिरिक्त शॉर्टकट उपलब्ध करावल जा सके।idaria-controlsid

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

प्रयोग के बारे में बतावल गइल बा

पतन प्लगइन भारी उठावे के संभाले खातिर कुछ क्लास सभ के इस्तेमाल करे ला:

  • .collapseसामग्री के छिपा देला
  • .collapse.showसामग्री के देखावत बा
  • .collapsingसंक्रमण शुरू होखे पर जोड़ल जाला, आ खतम होखे पर हटा दिहल जाला

ई कक्षा 2018 में मिल सकेला _transitions.scss

डेटा विशेषता के माध्यम से कइल जाला

बस तत्व में data-toggle="collapse"आ एगो जोड़ल जाव data-targetजेहसे कि एक भा एक से अधिका संकुचनीय तत्वन के नियंत्रण स्वचालित रूप से असाइन कइल जा सके. एट्रिब्यूट एगो CSS चयनकर्ता के स्वीकार करे ला जेकरा data-targetपर संकुचन लागू कइल जा सके ला। collapseसंकुचित तत्व में क्लास के जरूर जोड़ल जाला । अगर रउआँ चाहत बानी कि ई डिफ़ॉल्ट रूप से खुलल होखे, त अतिरिक्त क्लास जोड़ीं show

संकुचित क्षेत्र में अकॉर्डियन नियर समूह प्रबंधन जोड़ें खातिर, डेटा विशेषता जोड़ीं data-parent="#selector"। एकरा के एक्शन में देखे खातिर डेमो के देखल जाव.

जावास्क्रिप्ट के माध्यम से कइल जाला

के साथ मैन्युअल रूप से सक्षम करीं:

$('.collapse').collapse()

विकल्प बा

विकल्प सभ के डेटा एट्रिब्यूट भा जावास्क्रिप्ट के माध्यम से पास कइल जा सके ला। डेटा विशेषता खातिर, विकल्प के नाम के , में जोड़ल जाला data-, जइसे कि में data-parent=""

नांव किसिम बाकी बिबरन
माता-पिता के बा चयनकर्ता के बा | जेक्वेरी ऑब्जेक्ट के बा | डोम तत्व के बा गलत अगर पैरेंट दिहल गइल बा, तब निर्दिष्ट पैरेंट के तहत सभ संकुचित तत्व बंद हो जाई जब ई संकुचित आइटम देखावल जाई। (पारंपरिक अकॉर्डियन व्यवहार के समान - ई cardकक्षा पर निर्भर करे ला)। एट्रिब्यूट के लक्ष्य संकुचित क्षेत्र पर सेट करे के पड़ी।
टॉगल कइल जाला बूलियन के बा सच आह्वान पर संकुचित तत्व के टॉगल करेला

विधियन के बारे में बतावल गइल बा

एसिंक्रोनस तरीका आ संक्रमण के बारे में बतावल गइल बा

सभ एपीआई विधि एसिंक्रोनस होला आ एगो संक्रमण शुरू होला . संक्रमण शुरू होते ही उ लोग फोन करे वाला के पास वापस आ जाला लेकिन खतम होखे से पहिले . एकरा अलावा, एगो संक्रमण घटक पर एगो मेथड कॉल के अनदेखी कइल जाई .

अधिक जानकारी खातिर हमनी के जावास्क्रिप्ट दस्तावेज देखल जाव .

.collapse(options)

रउरा सामग्री के एगो संकुचित तत्व के रूप में सक्रिय करेला. एगो वैकल्पिक विकल्प स्वीकार करेला object.

$('#myCollapsible').collapse({
  toggle: false
})

.collapse('toggle')

कवनो संकुचित तत्व के देखावल भा छिपावे खातिर टॉगल करे ला। संकुचित तत्व के वास्तव में देखावल भा छिपावे से पहिले (यानी shown.bs.collapseया hidden.bs.collapseघटना होखे से पहिले) कॉलर के वापस आ जाला।

.collapse('show')

एगो संकुचित तत्व देखावेला। संकुचित तत्व के वास्तव में देखावल जाए से पहिले (यानी shown.bs.collapseघटना होखे से पहिले) कॉलर के वापस आ जाला।

.collapse('hide')

एगो संकुचित तत्व के छिपावेला। संकुचित तत्व के वास्तव में छिपावे से पहिले (यानी hidden.bs.collapseघटना होखे से पहिले) कॉलर के वापस आ जाला।

.collapse('dispose')

कवनो तत्व के पतन के नष्ट कर देला।

घटनाक्रम के बारे में बतावल गइल बा

बूटस्ट्रैप के कोलैप्स क्लास कोलैप्स फंक्शनलिटी में हुक करे खातिर कुछ इवेंट के उजागर करेला।

घटना के प्रकार बा बिबरन
शो.बीएस.कलाप्स हो गइल बा showइंस्टेंस मेथड के कॉल कइला पर ई इवेंट तुरंत फायर हो जाला।
देखावल गइल.bs.collapse ई इवेंट तब फायर कइल जाला जब कौनों संकुचन तत्व के प्रयोगकर्ता के देखाई देवे वाला बनावल गइल होखे (CSS संक्रमण पूरा होखे के इंतजार करी)।
छिपावे के बा.बीएस.संकुचित कर दिहल गइल बा ई इवेंट तुरंत फायर हो जाला जब hideमेथड बोलावल जाला।
छिपल.बीएस.संकुचित हो गइल बा ई घटना तब फायर कइल जाला जब प्रयोगकर्ता से कौनों संकुचन तत्व छिपा दिहल गइल होखे (CSS संक्रमण पूरा होखे के इंतजार करी)।
$('#myCollapsible').on('hidden.bs.collapse', function () {
  // do something...
})