Skip to content

Instantly share code, notes, and snippets.

@keeganbrown
Created August 12, 2015 20:11
Show Gist options
  • Save keeganbrown/b74981d14fa2bbcf0ef7 to your computer and use it in GitHub Desktop.
Save keeganbrown/b74981d14fa2bbcf0ef7 to your computer and use it in GitHub Desktop.
quick and dirty hammer scrolling for GSAP Timeline
$('body').hammer();
$('body').on({
'touchstart': function(e) {
e.preventDefault();
},
'pan': function(e) {
console.log(e);
if (e.gesture.deltaY > 2) {
master.reverse();
} else if (e.gesture.deltaY < -2) {
master.play();
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment