I'm working with the fullPage.js plugin for a simple site I am doing.
tl;dr
What is the best way to allow a user to scroll past the slideshow while it is still cycling through the slides, so they can continue viewing the other sections of the site?
Where my code stands now...
I have created the functionality to automatically start cycling through the different slides of the slideshow in one of my sections, based on this GitHub issue that was answered. You can see my jsFiddle linked below to see it in action.
My Issue
The issue I am having is using this setTimeout to cycle through the slides automatically, if I try to then scroll (or navigate in any way) to another section of my page, the setTimeout keeps going and therefore I am taken back up to the slideshow as it continues to cycle. My code using the setTimeout looks like this:
afterRender: function () {
//on page load, start the slideshow
setTimeout(function () {
$.fn.fullpage.moveTo(1, 0);
}, 1000);
},
afterSlideLoad: function (anchorLink, index, slideAnchor, slideIndex) {
if (anchorLink == 'home') {
//make the slideshow automatically go!
setTimeout(function () {
$.fn.fullpage.moveTo(1, slideIndex + 1);
}, 1000);
//if you are at the last slide
//then cycle back to the first
if (slideIndex == 2) {
setTimeout(function () {
$.fn.fullpage.moveTo(1, 0);
}, 1000);
}
}
}
What I tried
I looked into the issue and saw a possible solution was to clearInterval. I figured the best time to do this would be in the onLeave callback.