Created
July 4, 2016 20:27
-
-
Save PatrickKing/3f9c3eb1da1e4aa79c2c141dcbf9a7cb to your computer and use it in GitHub Desktop.
Mousewheel/Touchpad inertia
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<title></title> | |
<style type="text/css"> | |
div { | |
height: 90%; | |
width: 90%; | |
background-color: gray; | |
display: block; | |
position: absolute; | |
} | |
</style> | |
</head> | |
<body> | |
<div id="mydiv"> </div> | |
<script type="text/javascript"> | |
el = document.getElementById('mydiv'); | |
el.addEventListener('wheel', function(myevent) { | |
console.log(myevent.deltaX + " " + myevent.deltaY); | |
}); | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment