views:

25

answers:

1

In a rails project how would I create a picture slideshow? It could be generated as flash or use prototype or something else.

I just want a series of images (as a sub-part of a web page, not be the whole page) to fade into each other, and to advance manually if clicked. It would be nice if I could do things like slowly zoom into the images

I imagine there must be a plugin or something to handle this?

A: 

Since this is a UI feature, I'd just use the JQuery plugin CycleLite. See this article from Eric Berry on O'Reilly Ruby or, for a Rails solution, this extract from Ruby on Rails: Up and Running.

Dave Everitt