Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I've come across this accepted solution and it is about Simple JQuery Fade ticker: Simple JQuery Fade ticker

How to create using the same code that will stop after a minute?

share|improve this question

1 Answer

up vote 0 down vote accepted
var aniSpd01 = 1000;
var fadeSpd01 = 1000;

$(function() {
    var startIndex = 0;
    var endIndex = $('#aniHolder div').length;
    $('#aniHolder div:first').fadeIn(fadeSpd01);

    var interval = window.setInterval(function() {
    $('#aniHolder div:eq(' + startIndex + ')').delay(fadeSpd01).fadeOut(fadeSpd01);
        startIndex++;
        $('#aniHolder div:eq(' + startIndex + ')').fadeIn(fadeSpd01);

        if (endIndex == startIndex) startIndex = 0;
    }, aniSpd01);
    //NEW
    window.setTimeout(function () {
        window.clearInterval(interval);
    }, 1000 * 60);
});
share|improve this answer
1  
Yes, tried it. Didn't work. – Irishgirl Oct 20 '12 at 0:13
I just tested it in jsfiddle: jsfiddle.net/VY9y4/1 did you miss the var interval = – generalhenry Oct 20 '12 at 0:17
1  
Thanks for jsfiddle. its cleared it up. It worked. – Irishgirl Oct 20 '12 at 0:26

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.