views:

1125

answers:

2

Hi all, 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

    });
+1  A: 

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.

carillonator
Thanks for that. Decide do it an easy way and use the jquery animate function.
nharry
A: 

Here's a scroller that doesn't pause: http://bloggerplugnplay.blogspot.com/2009/10/verticle-auto-scroll-news-ticker-using.html

Larry K