Does anyone know a work around to make animated GIF's continue to be animated after you click a link or submit a form on the page your on in IE? This works fine in other browsers.
Thanks.
|
Does anyone know a work around to make animated GIF's continue to be animated after you click a link or submit a form on the page your on in IE? This works fine in other browsers. Thanks.
| |||||||
feedback
|
|
It's a known bug (limitation) of IE. You could use javascript to solve it. Just preload image and change source ( | |||||||||||||||
feedback
|
|
The accepted solution did not work for me. After some more research I came across this workaround, and it actually does work. Here is the gist of it:
and in your html:
So when the form is submitted the img tag is inserted which for some reason it is not effected by the ie animation issues. Tested in Firefox, ie6, ie7 and ie8. | |||||||||||||||||
feedback
|
|
old question, but posting this for fellow googlers: Spin.js DOES WORK for this use case: http://fgnass.github.com/spin.js/ | |||||||||||||||
feedback
|
|
IE assumes that the clicking of a link heralds a new navigation where the current page contents will be replaced. As part of the process for perparing for that it halts the code that animates the GIFs. I doubt there is anything you can do about it (unless you aren't actually navigating in which case use return false in the onclick event). | |||||||||
feedback
|
|
Here's what I did. All you have to to is to break up your GIF to say 10 images (in this case i started with HTML:
JavaScript:
This method works with IE7, IE8 and IE9 (althought for IE9 you could use | ||||
feedback
|
|
| |||
feedback
|
|
Related to this I had to find a fix where animated gifs were used as a background image to ensure styling was kept to the stylesheet. A similar fix worked for me there too... my script went something like this (I'm using jQuery to make it easier to get the computed background style - how to do that without jQuery is a topic for another post):
[EDIT] With a bit more testing I've just realised that this doesn't work with background images in IE8. I've been trying everything I can think of to get IE8 to render a gif animation wile loading a page, but it doesn't look possible at this time. | ||||
|
feedback
|
|
I realize that this is an old question and that by now the original posters have each found a solution that works for them, but I ran across this issue and found that VML tags do not fall victim to this IE bug. Animated GIFs still move during page unload when placed on the IE browser using VML tags. Notice I detected VML first before making the decision to use VML tags so this is working in FireFox and other browsers using normal animated GIF behavior. Here's how I solved this.
Naturally, this relies on jQuery, jQueryUI and requires an animated GIF of some type ("/images/loading_gray.gif"). | |||
|
feedback
|
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.