Skip to content

Instantly share code, notes, and snippets.

@ABooooo
Created June 30, 2016 09:38
Show Gist options
  • Save ABooooo/8febb2ccc6eb7cdebbcf576f3649a13b to your computer and use it in GitHub Desktop.
Save ABooooo/8febb2ccc6eb7cdebbcf576f3649a13b to your computer and use it in GitHub Desktop.
reset css animation (loop)
<script>
setInterval(function(){
var container = document.getElementById('anim');
var tmp = container.innerHTML;
container.innerHTML= tmp;
}, 9000 // length of the whole show in milliseconds
);
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment