by McInfo » Tue Jul 19, 2011 10:23 pm
There is no way to "bookmark" a GIF, so making the animation start at a specific frame involves reordering the frames. That could result in graphical anomalies because a frame may rely on the cumulative changes made to the so-called "logical screen" by all the frames before it. Also, changes to the image file would be seen by all users. And it would be unnecessarily resource-intensive to modify an image so frequently.
Depending on the number of frames, it might be practical to create a cache of separate GIFs (using a graphics program) that start at different frames.
You still have the problem of knowing what frame the animation is on. That could be solved by maintaining a counter in JavaScript with a timeout or interval that begins when the image is loaded. Image objects have an onload method that is called when the image has finished loading. The timeout or interval would need to be synchronized with the frame delay. I wouldn't expect that to be totally reliable.
An alternative might be to represent each frame with a separate file (not necessarily GIF) and use JavaScript to animate them. The frame counter would be more reliable this way. The images would need to be pre-loaded.
Network delays should be a consideration.
Are you able to share the image? Seeing it might help us better understand the situation and inspire some creative solutions.