Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Is it possible to use javascript to control which frame of a gif image is showing / stop animation. I want to be able to load a gif with several frames and only show one of them. I know I could do it with lots of seperate images, but if I can do what i want with a gif, it will only be one file to worry about.

Thanks,

Logan

share|improve this question
2  
You can also do it with one big image with sprites and only show exact sprite by clipping image – MBO Mar 5 '10 at 7:40
Agree with @MBO, with sprites is fairly simple, check this related question: stackoverflow.com/questions/1736922/… – CMS Mar 5 '10 at 7:45

3 Answers

up vote 2 down vote accepted

You can do it with a single image using CSS sprites.

share|improve this answer
This is true so long as what one wants to do is split up different variations of an image around the 2D plane, and not to split it up as separate frames. – Pointy Mar 5 '10 at 8:11

No, it is not possible. You won't be able to do image manipulation like this using javascript.

share|improve this answer

You can use the libgif library. https://github.com/buzzfeed/libgif-js

It allows you to start/stop the gif and control which frame the gif is on.

<script type="text/javascript" src="./libgif.js"></script>
<img id="example1"  rel:animated_src="./example_gifs/rub_test.gif" rel:auto_play="0" width="467" height="375" />
<br>
<script type="text/javascript">
  frame=1;
  var sup1 = new SuperGif({ gif: document.getElementById('example1') } );
  sup1.load();
  sup1.move_to(frame);
</script>

(most of the code is taken directly from their example)

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.