The text of this article is not in this database — only its details are. Read it on the old site: Image Animation in JavaScript
3 Comments
Join the conversation! Your thoughts help the community grow.
Sign in to leave a comment.
The text of this article is not in this database — only its details are. Read it on the old site: Image Animation in JavaScript
Join the conversation! Your thoughts help the community grow.
Sign in to leave a comment.
CariinfoPosted Mar 23, 2011, 11:18 PM
I'd tried this script in my web editor. It worked fine with IE, but not with Google Chrome (that the function of Javascript seemed not running at all). Does anybody know how to fix it, or could you please? Thank you.
Melat TesfayePosted Dec 5, 2010, 5:21 PM
I just want to make the animation stop on the last image, I don't want it to repeat itself, can u tell me how i can do that. thanks
Bechir BejaouiPosted Feb 21, 2008, 1:24 PM
I think the we can do all this in one function thanks to the recursivity concept function RullOver() { if(document.images) { window.setTimeout("document['myImage'].src = '../../../Images/Image1.jpg';",2000); window.setTimeout("document['myImage'].src = '../../../Images/Image2.jpg';",3000); window.setTimeout("document['myImage'].src = '../../../Images/Image3.jpg';",4000); window.setTimeout("document['myImage'].src = '../../../Images/Image4.jpg';",5000); setTimeout("RullOver();",5000); } }