View on GitHub

gif-pause

Click to play/pause animated GIFs

Download this project as a .zip file Download this project as a tar.gz file
var gifs = document.querySelectorAll('img[src$=".gif"]');
for(var i=0, l=gifs.length; i<l; i++) {
  new AnimatedGIF(gifs[i]).pause();
}