-
30 Apr 2012 4:27 PM #1
Restart GIF animation
Restart GIF animation
I have a GIF animation in scene 1, after it goes to scene2 and then back to scene1, the GIF animation does not play. How can I have the GIF animation restart when we go back to scene1? Thx.
-
2 May 2012 8:05 AM #2
You could try reloading the image, something like this (untested).
Code:var image = document.querySelector('#image-id img'); var src = image.src; image.src = ""; //option 1, not sure if it will work image.src = src; //option 2, might cause a flash setTimeout(function(){ image.src = src; },0)


Reply With Quote