Advertisement
Guest User

Untitled

a guest
Oct 27th, 2016
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. function checkKey(e) {
  2.  
  3. e = e || window.event;
  4.  
  5. if (e.keyCode == '38') {
  6. // up arrow
  7. window.scrollBy(0, -100);
  8. }
  9. else if (e.keyCode == '40') {
  10. // down arrow
  11. window.scrollBy(0, 100);
  12. }
  13.  
  14. }
  15.  
  16. document.onkeydown = checkKey;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement