Two Questions
As the title says, is it possible, with scrollify, to set a different scrollspeed for different sections?
I also have a "scrollify.next" button where I tried changing the scrollspeed, but I realized I'm no jquery/js expert. I managed to overwrite the scrollspeed settings on the button event, but how do I properly return the scrollspeed settings after the click event have finished? As it is now, all scrolling after clicking the button will follow the new setting.
I realise I need to re-learn jquery once again, heh!
$(".next-btn").click(function(e) {
e.preventDefault();
$.scrollify.setOptions({
scrollSpeed: 2500,
});
$.scrollify.next();
});
Documentation for scrollify https://github.com/lukehaas/Scrollify
Thanks in advance!