Skip to content

Instantly share code, notes, and snippets.

@nibalizer
Created February 26, 2020 18:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nibalizer/e8de0a635f594a98e7a39cee47a553b0 to your computer and use it in GitHub Desktop.
Save nibalizer/e8de0a635f594a98e7a39cee47a553b0 to your computer and use it in GitHub Desktop.
function get_random(arr){ return arr[Math.floor(Math.random()*arr.length)];}
setInterval(function(){
var elements = document.getElementsByClassName("developer--card__block_link");
get_random(elements).scrollIntoView({ behavior: 'smooth', block: 'center' });
}, 2500);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment