[jQuery] circular autoscrolling
Is it possible in jCarousel to have circular autoscrolling? I tried
setting the circular scrolling example to autoscroll and it wouldn't
work. However, when I took all the content out of the container it
worked somehow. Is this a bug?
The only thing I changed in the example was:
jQuery(document).ready(function() {
jQuery('#mycarousel').jcarousel({
wrap: 'circular',
auto:1,
scroll:1,
itemVisibleInCallback: {onBeforeAnimation:
mycarousel_itemVisibleInCallback},
itemVisibleOutCallback: {onAfterAnimation:
mycarousel_itemVisibleOutCallback}
});
});
and
<div class=" jcarousel-skin-ie7"><div style="display: block;"
class="jcarousel-container jcarousel-container-horizontal">
<div class="jcarousel-clip jcarousel-clip-horizontal">
<ul style="width: 497px; left: 0pt;" id="mycarousel"
class="jcarousel-list jcarousel-list-horizontal">
<!-- The content will be dynamically loaded in here -->
</ul></div></div></div>