Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save markasoftware/956444a9584179232f50f4e4d198cfe1 to your computer and use it in GitHub Desktop.
Save markasoftware/956444a9584179232f50f4e4d198cfe1 to your computer and use it in GitHub Desktop.
Scroll Gravity!
javascript:void((()=>{g=+prompt('Gravity Level:', '2.0');j=+prompt('Jumping force:', '2.0');k=0;v=0;u=0;function b(){scrollBy(0,v);if(k){v-=j}else{v+=g};requestAnimationFrame(b)};b();window.onkeydown=e=>e.keyCode===32?k=1:0;window.onkeyup=e=>e.keyCode===32?k=0:0})());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment