What does this control do?
Displays one or more rotating fragments of content. It is very useful to display thumbnails.
For an usage example check out the Meteora.Carousel demo.
How to use it
In order to be able to use this control, paste this line of javascript right
at the beginning of your script tag:
To organize the fragments of code you are trying to use in the carousel,
we suggest you to use an unordered list and customize it via CSS.
width: 360px;
}
#carousel-test ul.m-carousel-items li {
width: 120px;
height: 64px;
font-size: x-large;
color: #000;
font-style: italic;
}
<ul class="m-carousel-items">
<li style="background: #FF0000">1</li>
<li style="background: #FF4400">2</li>
...
<li style="background: #FF0088">N</li>
<li style="background: #FF0044">O</li>
</ul>
</div>
After you've organized your contents,
you may then be able to invoke the Carousel
// ELEMENT
// DIV element that surrounds your UL
'carousel-test'
);