Created
November 15, 2016 23:22
-
-
Save drwpow/61e4f6f63aad1c64b6ef18bed0d44218 to your computer and use it in GitHub Desktop.
HammerJS Slider Part 1
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
var sliderManager = new Hammer.Manager(document.querySelector('.slider')); | |
sliderManager.add(new Hammer.Pan({ threshold: 0, pointers: 0 })); | |
sliderManager.on('pan', function(e) { | |
console.log(e); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment