diff options
author | Hakim El Hattab | 2012-01-14 19:13:19 -0800 |
---|---|---|
committer | Hakim El Hattab | 2012-01-14 19:13:19 -0800 |
commit | 17854e892b51f9e53e2c786a9736ec3ca9dfb0a2 (patch) | |
tree | d0b870ad1c1e0b4a66906f78a1ac8912db4db976 | |
parent | 896e0b7010fd12573167e0b9dc45c7177b8db490 (diff) | |
parent | 2ae803efb6659474c61e4dba885bf6a5abf814fe (diff) |
Merge pull request #13 from naugtur/master
Mouse scroll handling
-rw-r--r-- | js/reveal.js | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/js/reveal.js b/js/reveal.js index 30add02..fe66dab 100644 --- a/js/reveal.js +++ b/js/reveal.js @@ -133,6 +133,11 @@ var Reveal = (function(){ // Add some 3D magic to our anchors linkify(); } + + //bind scrolling + if(window.addEventListener){ + document.addEventListener('DOMMouseScroll', scrollStep, false); + } // Read the initial hash readURL(); @@ -622,6 +627,26 @@ var Reveal = (function(){ } } + var stepT=0; + function scrollStep(e){ + clearTimeout(stepT); + stepT=setTimeout(function(){ + if(e.detail>0){ + if(availableRoutes().down){ + navigateDown() + }else{ + navigateRight() + } + }else{ + if(availableRoutes().up){ + navigateUp() + }else{ + navigateLeft() + } + } + },200); + } + // Expose some methods publicly return { initialize: initialize, |