I would like to slide down some li's one at a time on clicking a button .

I mocked up a little fiddle with what I currently have http://jsfiddle.net/S5T7N/ .

 <div id="dropdown">


    <h1>when you click here</h1>

    <ul>
    <li>We</li>
    <li>Will</li>
    <li>Slide Down</li>
    <li>One At A Time</li>
    </ul>
  </div>
link|improve this question

feedback

3 Answers

up vote 1 down vote accepted

Have a look at this JSFiddle.

$("#dropdown h1").click( function() {
    var lis = $(this).next('ul').find('li');

    $(lis).each(function(index) {
        var li = $(this);

        setTimeout(function() {
            li.slideDown(500);
        }, 500 * index);
    });
} )

This loops through each li and sets a timeout that waits for a different time for each li. It's currently set to 500ms, as that's the time of the animation. These values should stay the same to get a continuous looking animation.

link|improve this answer
thanks works great , would it be possible to have the next li start sliding down mid way through the last one slide? – Frank Astin Nov 29 '11 at 15:32
Yes it would; just set the timeout time to be less than 500ms. For example, setting it to 250 would make the next li slide down half way through the previous li's animation. Example here (100ms). – JamWaffles Nov 29 '11 at 15:39
feedback

The slideDown() function has a second argument, which is a callback function to execute when the animation finishes. Just use that function to slide the next one:

var slide = function(who)
{
    who.slideDown('slow', function(){
       var next = $(this).next('li');
       if (next)
           slide(next);
    });
}

$("#dropdown h1").click( function() {
    slide($('li:first'));
})

Working demo: http://jsfiddle.net/S5T7N/6/

link|improve this answer
feedback
$("#dropdown h1").click( function() {
    var sliderTimer=300;
    $("li").each(function()
                 {
                  $(this).slideDown(sliderTimer);
                     sliderTimer+=300;
                 });
} );

Live demo

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.