AnimatedFrameSlideshow
AnimatedFrameSlideshow copied to clipboard
how to add auto play
Hi i want to use this with auto play features. Please help Thanks.
maybe you can try settimeout > bind click next/prev?
I just solve like this.
$( document ).ready(function() {
setInterval(function(){
$('.slidenav__item--next').trigger('click');
}, 6000);
});
You can add these two scripts at the bottom of your HTML just along with other script tags:
`
`
You can add these two scripts at the bottom of your HTML just along with other script tags:
`
`
Not works for me. What am I doing wrong?