Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

So I have a bunch of divs that each contain a number. I am trying to set up a counter where it counts like this:

1 2 3
2 3 4
3 4 5
4 5 1
1 2 3

And so on. You can see my current code for this - here on jsFiddle.

I am trying to get the nodes to fadeIn and fadeOut one node at a time instead of show/hiding the entire container.

share|improve this question
1  
IMO there's a little too much code for something so simple. jsfiddle.net/2Q3mN/1 Adding effects should be a breeze then. jsfiddle.net/2Q3mN/2 – Fabrício Matté Jan 29 at 3:11
1  
ps. The re-usable code without using a fixed height container: jsfiddle.net/2Q3mN/3 too tired to write up an answer so best of luck with it. – Fabrício Matté Jan 29 at 3:29
Thanks so much. – raeq Jan 29 at 4:52

1 Answer

up vote 1 down vote accepted

Here's a way to do it:

//I didn't wrap the roller inside a function for this example, but you can pass
//these values as arguments to a function instead of assigning them here:
var $slides = $('#slides'),
    n = 3; //number of visible children (`.speaker`)

//init by hiding the children with index larger than `n`
$slides.children(':gt('+(n-1)+')').hide();

//note that :eq and :gt are 0-based, hence the n-1. You could also assign
//n -= 1 or n-- after receiving the n parameter if using a function wrapper
setInterval(function () {
    $slides.children(':first').fadeOut(600, function () {
        $slides.append(this).children(':eq('+(n-1)+')').fadeIn(600);
    });
}, 1500);

Fiddle

share|improve this answer
1  
Thanks so much. Your method is a lot cleaner then my original way. – raeq Jan 29 at 16:19

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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