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.