Please note: If you find any post DOES NOT contain required amount of explanation, please do comment them with a request for more information. I will update as soon as I can attend to it. Also you can contact me with a link to the post.


Tuesday, January 17, 2006

Timed Recursive Function : Java Script

//
// function that executes recursively but it is timed.
//
function animate() {
    k++
    if (k == 5) k = 1
    document.images[k - 1].src = imgArray2[k - 1].src
    if (k > 1)
        document.images[k - 2].src = imgArray1[k - 2].src
    else
        document.images[3].src = imgArray1[3].src
    var timeOutID = setTimeout("animate()", 1000)
} 

2 comments:

Mike said...

Nice Blog :)


www.FriendsterForum.com

Chinthaka Kumarasiri said...
This comment has been removed by a blog administrator.
 

Copyrights(C) - Charith Gunasekara 2005-2010