Created
May 6, 2014 16:07
-
-
Save albertein/ad47fcafa1db9734dd3d to your computer and use it in GitHub Desktop.
Scroll cycle.
This file contains 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
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