Page 2 of 2

What to do to get carousel to rotate images automatically

Posted: Fri Jun 12, 2015 2:04 pm
by Evgene Karachevtsev

Hello reidsantabarbara,

Sorry, I'm not sure I understand you correctly, could you please clarify your question and please specify have you tried Alena's approach?


What to do to get carousel to rotate images automatically

Posted: Fri Jun 12, 2015 4:49 pm
by reidsantabarbara .

I got this working with Alena's approach, thank you for your quick response!


What to do to get carousel to rotate images automatically

Posted: Thu Jul 30, 2015 10:33 am
by Rankin Morgan

Which code did you use?


What to do to get carousel to rotate images automatically

Posted: Thu Jul 30, 2015 12:47 pm
by Evgene Karachevtsev

Hello!

This is the code from the comment above preAppery(...).carouselRoot.carousel('next');/pre


What to do to get carousel to rotate images automatically

Posted: Thu Jul 30, 2015 8:10 pm
by Rankin Morgan

Evgene...I'm a novice at this. Where do I place this code?


What to do to get carousel to rotate images automatically

Posted: Sat Aug 01, 2015 4:11 am
by Evgene Karachevtsev

Rankin,

Please try this code on page show event.


What to do to get carousel to rotate images automatically

Posted: Tue Oct 13, 2015 7:33 pm
by Danny Ruiz

Hello,

Can anyone help me with this code..I have two HTML and one Image in my carousel...can't find any information regarding this code. My carousel is named mobilecarousel_33


What to do to get carousel to rotate images automatically

Posted: Tue Oct 13, 2015 7:51 pm
by Danny Ruiz

Can anyone help me with this code..I have two HTML and one Image in my carousel...can't find any information regarding this code. My carousel is named mobilecarousel_33


What to do to get carousel to rotate images automatically

Posted: Wed Oct 14, 2015 5:01 am
by Yurii Orishchuk

Hi Danny,

If you want to automatically change slides you can use following solution:

1 Open page where you have this carousel component.

2 Add "Page show" event handler.

3 Populate this handler with following JS code:

pre

var onDelay = function(){
//where "mobilecarousel_353" is your carousel component name.
Apperyio('mobilecarousel_353').carouselRoot.carousel("next")

};

window.clearInterval(self.carouselTimer);
self.carouselTimer = window.setInterval(onDelay, 3000);

/pre

Regards.


What to do to get carousel to rotate images automatically

Posted: Tue May 31, 2016 12:25 am
by Deon

Works perfect Yurri. Thank you