twbs / bootstrap

The most popular HTML, CSS, and JavaScript framework for developing responsive, mobile first projects on the web.
https://getbootstrap.com
MIT License
170.47k stars 78.83k forks source link

Tabs set animation option #2534

Closed Merg1255 closed 12 years ago

Merg1255 commented 12 years ago

http://twitter.github.com/bootstrap/components.html : tabbable example has the tabs display content immediately when clicking on them.

http://twitter.github.com/bootstrap/javascript.html#tabs : here there is an animation effect when showing new tab content.

You could add an option whether to enable the animation using a class.

jeremybenaim commented 12 years ago

isnt't the role of the fade class ?

e.g (for tabbable example)

<div class="tab-content">
  <div class="tab-pane fade in active" id="1">
    <p>I'm in Section 1.</p>
  </div>
  <div class="tab-pane fade" id="2">
    <p>Howdy, I'm in Section 2.</p>
  </div>
  <div class="tab-pane fade" id="3">
    <p>What up girl, this is Section 3.</p>
  </div>
</div>
Merg1255 commented 12 years ago

Here's the actual code from the JS page:

Example tabs

      <p>Click the tabs below to toggle between hidden panes, even via dropdown menus.</p>
      <ul id="tab" class="nav nav-tabs">
        <li class="active"><a href="#home" data-toggle="tab">Home</a></li>
        <li><a href="#profile" data-toggle="tab">Profile</a></li>
        <li class="dropdown">
          <a href="#" class="dropdown-toggle" data-toggle="dropdown">Dropdown <b class="caret"></b></a>
          <ul class="dropdown-menu">
            <li><a href="#dropdown1" data-toggle="tab">@fat</a></li>
            <li><a href="#dropdown2" data-toggle="tab">@mdo</a></li>
          </ul>
        </li>
      </ul>

Do you see any such class there?..

jeremybenaim commented 12 years ago

not in the nav-tabs element but look at the actual tab elements :

<div id="myTabContent" class="tab-content">
    <div class="tab-pane fade in active" id="home">
        <p>
            Raw denim you probably haven't heard of them jean shorts Austin. Nesciunt tofu stumptown aliqua, retro synth master cleanse. Mustache cliche tempor, williamsburg carles vegan helvetica. Reprehenderit butcher retro keffiyeh dreamcatcher synth. Cosby sweater eu banh mi, qui irure terry richardson ex squid. Aliquip placeat salvia cillum iphone. Seitan aliquip quis cardigan american apparel, butcher voluptate nisi qui.
        </p>
    </div>
    <div class="tab-pane fade" id="profile">
        <p>
            Food truck fixie locavore, accusamus mcsweeney's marfa nulla single-origin coffee squid. Exercitation +1 labore velit, blog sartorial PBR leggings next level wes anderson artisan four loko farm-to-table craft beer twee. Qui photo booth letterpress, commodo enim craft beer mlkshk aliquip jean shorts ullamco ad vinyl cillum PBR. Homo nostrud organic, assumenda labore aesthetic magna delectus mollit. Keytar helvetica VHS salvia yr, vero magna velit sapiente labore stumptown. Vegan fanny pack odio cillum wes anderson 8-bit, sustainable jean shorts beard ut DIY ethical culpa terry richardson biodiesel. Art party scenester stumptown, tumblr butcher vero sint qui sapiente accusamus tattooed echo park.
        </p>
    </div>
    <div class="tab-pane fade" id="dropdown1">
        <p>
            Etsy mixtape wayfarers, ethical wes anderson tofu before they sold out mcsweeney's organic lomo retro fanny pack lo-fi farm-to-table readymade. Messenger bag gentrify pitchfork tattooed craft beer, iphone skateboard locavore carles etsy salvia banksy hoodie helvetica. DIY synth PBR banksy irony. Leggings gentrify squid 8-bit cred pitchfork. Williamsburg banh mi whatever gluten-free, carles pitchfork biodiesel fixie etsy retro mlkshk vice blog. Scenester cred you probably haven't heard of them, vinyl craft beer blog stumptown. Pitchfork sustainable tofu synth chambray yr.
        </p>
    </div>
    <div class="tab-pane fade" id="dropdown2">
        <p>
            Trust fund seitan letterpress, keytar raw denim keffiyeh etsy art party before they sold out master cleanse gluten-free squid scenester freegan cosby sweater. Fanny pack portland seitan DIY, art party locavore wolf cliche high life echo park Austin. Cred vinyl keffiyeh DIY salvia PBR, banh mi before they sold out farm-to-table VHS viral locavore cosby sweater. Lomo wolf viral, mustache readymade thundercats keffiyeh craft beer marfa ethical. Wolf salvia freegan, sartorial keffiyeh echo park vegan.
        </p>
    </div>
</div>
Merg1255 commented 12 years ago

ah you're right. :) topic closed.

phcoliveira commented 11 years ago

Actually, I had to add "display" property to class "fade" and set it to "none". In my case, the inactive tab-panes were invisible, but they were still occupying space.