Skip to content

Instantly share code, notes, and snippets.

@seriiserii825
Created June 10, 2017 09:26
Show Gist options
  • Save seriiserii825/26e8c50ec877d36c01c01fbc35d534e8 to your computer and use it in GitHub Desktop.
Save seriiserii825/26e8c50ec877d36c01c01fbc35d534e8 to your computer and use it in GitHub Desktop.
setinterval
$('.card').each(function(index){
var ths = $(this);
setInterval(function(){
ths.removeClass('active');
}, 100*index);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment