Created
June 30, 2016 09:38
-
-
Save ABooooo/8febb2ccc6eb7cdebbcf576f3649a13b to your computer and use it in GitHub Desktop.
reset css animation (loop)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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