Skip to content

Instantly share code, notes, and snippets.

@FluidCoding
Created January 15, 2018 01:14
Show Gist options
  • Save FluidCoding/ca98739f87746f0810f726c3625532d9 to your computer and use it in GitHub Desktop.
Save FluidCoding/ca98739f87746f0810f726c3625532d9 to your computer and use it in GitHub Desktop.
Toggle Scroll with 'v'
(function() {
let isON = false;
let sTick;
window.document.addEventListener('keypress',
(e) => {
if(e.key=='v'){
isON=!isON;
sTick = isON ? setInterval(()=>{window.scrollBy(0,1); }, 20) : clearInterval(sTick);
}
});
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment