Skip to content

Instantly share code, notes, and snippets.

@phantomtnt
Last active September 16, 2019 20:09
Show Gist options
  • Select an option

  • Save phantomtnt/8ae16f3d48e9b0c4950307182fc81c92 to your computer and use it in GitHub Desktop.

Select an option

Save phantomtnt/8ae16f3d48e9b0c4950307182fc81c92 to your computer and use it in GitHub Desktop.

Revisions

  1. phantomtnt revised this gist Sep 16, 2019. No changes.
  2. phantomtnt created this gist Sep 16, 2019.
    8 changes: 8 additions & 0 deletions autoScroll.js
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,8 @@
    //Define page scroll function
    function pageScroll() {
    window.scrollBy(0, 2);
    scrolldelay = setTimeout(pageScroll, 10);
    }

    //Execute page scroll function
    pageScroll()