Created
April 8, 2018 21:30
-
-
Save auchenberg/9eae2e61ba01e0ea8747c8268ed5c8fd to your computer and use it in GitHub Desktop.
This file contains 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
window.onwheel = function (e) { | |
e.preventDefault(); | |
if (e.ctrlKey) { | |
// Your zoom/scale factor | |
scale -= e.deltaY * 0.01; | |
} else { | |
// Your trackpad X and Y positions | |
posX -= e.deltaX * 2; | |
posY -= e.deltaY * 2; | |
} | |
render(); | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Nice, thanks!