View Single Post
  #2 (permalink)  
Old 08-19-07, 05:00 AM
Wolf1994 Wolf1994 is offline
Wannabe Coder
 
Join Date: Sep 2005
Location: Russia
Posts: 117
Thanks: 0
Thanked 0 Times in 0 Posts
You may use "img" element with static gif picture of first frame of Your animation and then by click replace src of this "img" with animation, like:
Code:
<img src="first_frame.gif" alt="" onclick='javascript:(this.src=="first_frame.gif"?this.src="animation.gif":"")' />
Code was not tested so sorry if it will not work.
Reply With Quote