Jquery, Jcarousel smooth infinite scrolling

user289554 picture user289554 · Mar 14, 2010 · Viewed 20.7k times · Source

I am using jcarousel to auto scroll some images. I would like to know how to make them scroll in one fluid scroll with no pauses or stops.

Currently there is a pause and then it scrolls again. If I am not making myself clear then ask and I will try to explain a little better.

This is the code:

jQuery(document).ready(function() {
    jQuery('#mycarousel').jcarousel({
        auto: 1,
        wrap: 'last',
        vertical: true,
        animation: 5000

    });

Answer

carillonator picture carillonator · Mar 14, 2010

try

auto: .01

you have it set to autoscroll every 1 second. I don't think a fluid scroll is possible, but this should look just about the same.