CarouFredSel, circular, responsive jQuery carousel
If you're scrolling images, don't forget to specify a width and height. Otherwise the plugin might not be able to measure the correct size of the images onDocumentReady (mostly on Webkit browsers Chrome and Safari).
Using the HTML attributes:
<img src="image1.jpg" width="140" height="140" />
Via CSS:
#foo img {
width : 140px;
height : 140px;
}
Via the plugin configuration:
$("#foo").carouFredSel({
items : {
width : 140,
height : 140
}
});
If the plugin seems to do nothing at all in Internet Explorer, chances are you have a trailing comma where it does not belong.
The effects "fade" and "crossfade" don't fade all kinds of HTML-elements in some versions of Internet Explorer.
This is probably due to the fact that IE has problems fading elements with position: relative;, try not to use it in combination with one of the fading effects.