jQuery vertical carousel with smooth scroll

Izi

Izi

Soldato
Joined
9 Dec 2007
Posts
2,718
I need a jQuery scipt which scrolls automatically on a vertical access.

When i mouse over the scroll it needs to stop. The HTML which is scolling needs to be clickable.

It doesnt need to be jQuery but would be nice.

Anyone got any examples of this requirement?

Thanks
 
Well this does what you want... from the outset! It takes about 30 seconds configuration, a couple of variable changes. No more reading than if someone were to post code here and you try to understand it.


I am going to have a play with this but there are two missing things that i can't see or have missed:

1) Smooth scrolling, continuously
2) Mouse over scrolling item to pause the scroll

Found a way to pause it:

carousel.clip.hover(function() {
carousel.stopAuto();
}, function() {
carousel.startAuto();
});
};
 
Last edited:
Try easy slider then. Seems more like you want, rather than a carousel.

Just need to change the orientation to vertical

thanks for that, i'll take a look.

Maybe I didnt explain myself very well.... I am going to have about 10 sponsor logos, I need these to scroll vertically like a waterfall down the page. So jCarousel does this, but not the waterfall style. It needs to be a continous stream of logos going down the page, if someone mouses over it needs to stop.
 
ha, thats interesting. I set the speed of the scroll to 10 seconds with jCarousel and it kinda does what i need. :)

EDIT: can't get it to pause on hover tho with the longer scroll speed:(

EDIT2: think ive sorted it, will post code if anyone is interested when finished.
 
Last edited:
Back
Top Bottom