Skip to content

Instantly share code, notes, and snippets.

@nchevobbe
Created December 5, 2017 09:04
Show Gist options
  • Save nchevobbe/142adf46f190b412988d2cf60792ae31 to your computer and use it in GitHub Desktop.
Save nchevobbe/142adf46f190b412988d2cf60792ae31 to your computer and use it in GitHub Desktop.
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