Garbage Burrito!

an internet web blog by Ben Kittrell

Slideshow / Clearing All Javascript Timers

Slideshow / Clearing All Javascript Timers
Ben Kittrell - 05/31/2007 16:07:00
Comments: 13
Last Comment: 08/27/2010 18:48:51

I decided to whip up a slideshow for the photo albums, since a few people have asked for it.  First I thought about finding a flash one, but I knew that it would probably ask for a simple directory of images, and doodlekit doesn't store images that way.  So I figured I could just use Ajax and some Scriptaculous effects instead.  The end result is pretty slick

One thing I had to do to make it look so good is preload the next image, so you can't see it loading when the last one is fading.  To do this I have a temporary div that sits over the main image div.  I copy image A into the temp div, load image B in the main div, then fade the temp div.  This requires me to use four different timers for various purposes to make everything look smooth.
 
However, I ran into a problem when I added the previous and next links.  When you clicked on either, it loaded the proper image fine but the timers where still running.  This started a chain reaction of all kinds of crap.  

I needed a way to stop the timers, but I was using Rail's Javascript helpers which meant I couldn't just get the timer's id and call clearTimeout.

Instead I came up with a cool way to clear all the timers in one swoop.  Basically I override the setTimeout method and store each timer id in an array.  Then when I need to I just loop through the array and clear them all.

    timers = new Array();
    oldSetTimeout = window.setTimeout;
    window.setTimeout = function(code, interval) {
      timers.push(oldSetTimeout(code, interval));
    }
    
    function resetTimeouts() {
      timers = new Array();
    }
    
    function clearTimeouts() {
      for (var i= 0;i < timers.length; i++) {
        clearTimeout(timers[i]);
      }
      resetTimeouts();
    }


I know this isn't totally elegant, but I think it's a good solution to a sticky problem.  To use, just include this code and call clearTimeouts whenever you want.  I extracted resetTimeouts so it could be called after each slide transition, and so the timer array didn't just keep growing.

Comments: 13
Last Comment: 08/27/2010 18:48:51

Comments

1. Stephen Ausman   |   06/05/2007 00:58:10

Slideshow feature is awesome :)

Can't wait to see what you make next.

2. rheaghen   |   06/11/2007 12:08:46

pretty slick ben. =)

3. rheaghen   |   07/02/2007 19:45:14

Hey, it would also be pretty cool if the next, previous links also used the fade effect.

4. Ben Kittrell   |   07/02/2007 21:27:43

Yeah, I wanted to, but the timing is already pretty complicated and volatile. I might try that later.

5. Jon  |  my website   |   04/03/2010 23:16:12

Awesome little function, nice work!

6. eyeglass frame wholesale  |  my website   |   07/21/2010 06:59:40

<a href="web link frame wholesale</strong></a>
<a href="web link sunglasses wholesale</strong></a>
<a href="web link replica sunglasses</strong></a>

7. eyeglass frame wholesale  |  my website   |   07/21/2010 07:05:33

<a href="web link frame wholesale</strong></a>
<a href="web link sunglasses wholesale</strong></a>
<a href="web link replica sunglasses</strong></a>

8. eyeglass frame wholesale  |  my website   |   07/21/2010 07:17:33

<a href="web link frame wholesale</strong></a>
<a href="web link sunglasses wholesale</strong></a>
<a href="web link replica sunglasses</strong></a>

9. InesGrant  |  my website   |   08/18/2010 02:59:39

Specialists state that <a href="web link loans</a> aid a lot of people to live the way they want, just because they are able to feel free to buy necessary stuff. Moreover, a lot of banks offer car loan for young and old people.

10. replica mac cosmetics  |  my website   |   08/24/2010 05:00:12

Here is the newest coupon code for a free sample of <a href="web link mac cosmetics</a> Zoom

Lash mascara with any purchase. You will also get free shipping on your order. Just enter promotional code LASH510 at checkout at

web link. Keep in mind that these offers expire after a period of time.

11. replica mac cosmetics  |  my website   |   08/27/2010 08:54:30

<a href="web link mac cosmetics</a> provides you the best and cheapest cosmetics. All the

products at web link are 100% high quality, competitive price, free shipping with best and timely

service, 100% satisfaction. Big discount for big order. Welcome to make your choose.

12. replica mac cosmetics  |  my website   |   08/27/2010 09:08:34

<a href="web link mac cosmetics</a> provides you the best and cheapest cosmetics. All the

products at web link are 100% high quality, competitive price, free shipping with best and timely

service, 100% satisfaction. Big discount for big order. Welcome to make your choose.

13. macmakeupsupplier  |  my website   |   08/27/2010 18:48:51

<a href="web link cosmetics discount<strong></a> :welcome.

Post a Comment


Are you human? Please enter the word below.
M2zhcmnllmpwzzeyodm0nju1nji=


powered by Doodlekit™ Free Website Builder by Doodlebit™ Website Company