Skip to content

Instantly share code, notes, and snippets.

@tangorri
Last active December 18, 2015 18:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tangorri/5827049 to your computer and use it in GitHub Desktop.
Save tangorri/5827049 to your computer and use it in GitHub Desktop.
Pemettre de relancer un gif animé.
function restartGif(img) {
var gifUrl = img.src;
img.src = "blank.png";
img.onload = function() {
img.src = gifUrl;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment