Created
February 2, 2019 05:56
-
-
Save ahikmatf/5a27ac593f5caff48c8ea8ac3a52def7 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
| x=1 | |
| interval = setInterval(function() { | |
| window.scroll(0, x); | |
| x = x + 1; //if you want to increase speed simply increase increment interval | |
| }, 40); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment