You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
is there a way to interact with an specific element of the carousel? so for example, is there a way i can hide/show elements of a element that is in the back of a 4 items carousel.
help is very appreciated!
Thanks,
The text was updated successfully, but these errors were encountered:
The data('carousel') accessor gives you access to the carousel's internals at any time:
$('#showcase').data('carousel').items
If you'd like the opportunity to interact with the items directly on each frame, then the onRendered() hook makes that easy:
showcase.Cloud9Carousel({// ...onRendered: function(carousel){for(i=0;i<carousel.items.length;i++){// You can manipulate items directlyconsole.log(carousel.items[i])}}})
Hi,
is there a way to interact with an specific element of the carousel? so for example, is there a way i can hide/show elements of a element that is in the back of a 4 items carousel.
help is very appreciated!
Thanks,
The text was updated successfully, but these errors were encountered: