Notice: The Monaca & Onsen UI Community Forum is shutting down.
For Onsen UI bug reports, feature requests and questions, please use the Onsen UI GitHub issues page. For help with Monaca, please contact Monaca Support Team.
Thank you to all our community for your contributions to the forum. We look forward to hearing from you in the new communication channels.
Ons - carusolul auto slider
-
How to add auto scrolll feature…
-
The Onsen UI part that you need is carousel.next() method. The rest is pure JavaScript: setInterval().
-
i got it…working good…thank you…
setInterval(function() {
var index = carousel.getActiveCarouselItemIndex();
if (index >= 7) { carousel.first(); }
else { carousel.next(); } }, 5000);
});