views:

2174

answers:

5

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?

A: 

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

Adam
A: 

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.

Gushiken
+1  A: 

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?

elcuco
The second one is pretty close, but still uses structured markup, and "jump-scrolling".
felixg
What do you mean by "structured markup"?Did you see my other comment here? I used that on a live site and I am almost happy about it (it jump scrolls like you called it, but its the best I found).
elcuco
A: 

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.

Andy Ford
+1  A: 

I am using currently: http://jdsharp.us/jQuery/plugins/jdNewsScroll/1.1/

Which does seem to do also what you requested.

elcuco