Skip to content
Snippets Groups Projects
Commit 2ae803ef authored by Naugtur's avatar Naugtur
Browse files

Added support for smart scrolling through slides. Scrolling events are...

Added support for smart scrolling through slides. Scrolling events are throttled to prevent going too far
parent 401c554c
No related branches found
No related tags found
No related merge requests found
......@@ -173,6 +173,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();
......@@ -676,6 +681,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,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment