Disabling GIF animation in HTML

落爺英雄遲暮 提交于 2019-12-10 12:39:55

问题


Is there any way, in HTML, to include an animated GIF in an <img> tag, but automatically tell the GIF to not animate? I realize that the user can stop animation by pressing ESC or clicking Stop, but I want the GIFs not to animate at all.

I only want to do this on one specific page, and making separate non-animated versions of the (1500+) GIFs is not feasible. I simply want the GIFs to not animate.


回答1:


You could use Giffer.

Just include the library in your page:

<script type="text/javascript" src="gifffer.min.js"></script>

Instead of setting src attribute on your image use data-gifffer.

<img data-gifffer="image.gif" />

At the end, call Gifffer() whenever you want. For example:

window.onload = function() {
    Gifffer();
}

If you don't want the GIF to move at all you can always edit the .js file to remove the play button.




回答2:


Not with plain HTML but using PHP with imagecreatefromgif might help you




回答3:


I don't think calling window.stop() will be a good solution. This would need to be called for every image that is loaded to prevent it from running half way through and stopping. The best solution is to use a library such as GD to create images featuring just the first frame of the animated GIF.




回答4:


Use ImageMagik, and you can readily convert all 1500 images.




回答5:


You could use window.stop() in javascript, which should be the equivalent of pressing ESC/clicking stop. However, I'm pretty sure it won't work in all browsers (i.e. IE).



来源:https://stackoverflow.com/questions/953766/disabling-gif-animation-in-html

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!