Open Mexikaner9 opened 4 years ago
Yes, please add auto play and random play feature and sell it on https://codecanyon.net/category/javascript
Thanks ! I'll will keep that in mind in case I release a new update.
Please add at least the autoplay function. Thanks a lot
You can look at this issue https://github.com/hmongouachon/rgbKineticSlider/issues/13
I created function for playing autoplay.
You can look at page How to Implement JavaScript Auto-Repeat Functionality
jQuery(document).ready(function( $ ){
// kinetic slider autoplay
var waitingDuration = 1000; // waiting for 1 second
var counter = 0;
var clickNextBtn = window.setInterval(function(){
var nextBtn = document.querySelectorAll(".slider-controls span")[1];
// when page load, waiting for 'waitingDuration'
if(counter == 0){
counter += 1;
}
else{
nextBtn.click();
}
}, waitingDuration);
});
great! thanks!
Congratulations! Great job! Autoplay and random play would be great