Hi!
How do I change the slide interval for the bottom slider in Quark template? Please see attached file containing a print screen. Also, how do I disable the auto slide for the same module?
Many thanks in advance!
// auto-animation
setTimeout(function() {
testimonials_auto_animate();
}, 10000);
function testimonials_auto_animate() {
if(wrapper.attr('data-block') == 'false') {
jQuery(quotes[current_page]).addClass('hidden');
current_page = current_page + 1;
if(current_page >= pages.length) {
current_page = 0;
}
jQuery(quotes[current_page]).removeClass('hidden');
pages.removeClass('active');
jQuery(pages[current_page]).addClass('active');
sliding_wrapper.css('margin-left', -1 * (current_page * 100) + "%");
} else {
wrapper.attr('data-block', 'false');
}
setTimeout(function() {
testimonials_auto_animate();
}, 10000);
}
});
}