Skip to content

Instantly share code, notes, and snippets.

@albertein
Created May 6, 2014 16:07
Show Gist options
  • Save albertein/ad47fcafa1db9734dd3d to your computer and use it in GitHub Desktop.
Save albertein/ad47fcafa1db9734dd3d to your computer and use it in GitHub Desktop.
Scroll cycle.
var ids = [“tab1”, “tab2”, “tab3”….., “tabn”];
var tabIndex = 0;
window.setInterval(function() {
tabIndex = (tabIndex + 1) % ids.length;
var element = document.getElementById(ids[tabIndex]);
element.scrollIntoView(true);
}, 15 * 1000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment