felixg
felixg

Reputation: 972

Implementing circular scroller in jquery

I'm looking for a jquery plugin to simulate a vertical marquee. I need it to support:

  1. Scroll any opaque (unstructured) content. No li, no div. The user can even paste from Word.
  2. Automatic constant scroll velocity.
  3. Pause on hover.
  4. Circular scroll - after scrolling to end, continue smoothly from the beginning. No scroll back, no visible jump.

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

Answers (5)

elcuco
elcuco

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

Andy Ford
Andy Ford

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

elcuco
elcuco

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

SvenFinke
SvenFinke

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

Adam
Adam

Reputation: 28858

I would take a look at Glimmer. A new designer tool to help generate all the code needed for cool UI widgets like this.

Upvotes: 0

Related Questions