Reputation: 972
I'm looking for a jquery plugin to simulate a vertical marquee. I need it to support:
I tried all the tickers, serialScroll, carousels, etc... Most require some structure, list, constant width/height items. Also they scroll by full items (scroll, wait, scroll). But the biggest blocker is requirement 4. None provide "fake" tail to smoothly restart scrolling.
Have I missed something, or I'll have to write this by myself?
Upvotes: 2
Views: 9010
Reputation: 9208
I am using currently: http://jdsharp.us/jQuery/plugins/jdNewsScroll/1.1/
Which does seem to do also what you requested.
Upvotes: 1
Reputation: 8490
You may or may not be able to achieve this using the Cycle plugin. Either by using it's impressive API or by extending it a bit.
Upvotes: 0
Reputation: 9208
2 live examples of what you want:
http://www.learningjquery.com/2006/10/scroll-up-headline-reader
http://woork.blogspot.com/2008/10/automatic-news-ticker-with-vertical.html
Both written using jquery. Is this what you are looking for?
Upvotes: 2
Reputation: 1254
You should try http://flowplayer.org/tools/demos/scrollable/autoscroll.html
The Problem is that it is not scrolling smoothly from the end to the beginning, but jumps to the start... Maybe you can edit the code for your requirements...
EDIT:
--> http://www.maaki.com/thomas/SmoothDivScroll/index.html
Its a little tutorial for autoscrolling using jQuery. Thr problem is, its supposed to be used with a div and just works horizontally. But it should be no problem on changing the code to make it scroll vertically if you have some javascript experience.
Upvotes: 0