What you have there is an animated .gif image. The easiest thing to do would be to have another version of the same image that isn't animated. It can have the same image transparency as the animated version. Then all you would need is a simple script to swap the images. Here is the images code in the source file:
Code:
<img src="images/Truth_or_justice.gif" width="110" height="90">
If you were to do something like so:
Code:
<img onclick="this.style.display='none';document.images[1].style.display='';" src="images/Truth_or_justice.gif" width="110" height="90"><img src="images/Truth_or_justice_plain.gif" width="110" height="90" style="display:none;">
Then just clicking on it would stop the animation.
Even easier and requiring no clicking would be to edit the image you have and make it so that it only loops a few times and then stops on its own. This can be easily done in any animated .gif editing software.
Bookmarks