I need a jQuery plugin for infinite carousel that's seamless and indicates location.
I tried CorouFredSel but after sliding to anothe开发者_StackOverflow社区r slide this carousel creates a blank space for a while.
I've always been a fan of jCarousel
Check out Orbit for a lightweight semantic-HTML slider:
<div id="featured">
<img src="overflow.jpg" />
<img src="captions.jpg" />
<img src="features.jpg" />
</div>
<script type="text/javascript">
$(window).load(function() {
$('#featured').orbit();
});
</script>
精彩评论