Created
December 5, 2017 09:04
-
-
Save nchevobbe/142adf46f190b412988d2cf60792ae31 to your computer and use it in GitHub Desktop.
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
var index = 0; | |
var nodes = document.querySelectorAll(".tree-node"); | |
function scrollNext() { | |
index = index + 40; | |
nodes[index].scrollIntoView(); | |
if (index < nodes.length - 1) { | |
requestAnimationFrame(scrollNext); | |
} | |
} | |
scrollNext(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment