Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Looking for a simple fade javascript image rotator

I need a simple image rotator that rotates images by fading, centers vertically and is accepted by most if not all browsers. I however need to be able to customize the arrow images and place them anywhere i like. Anyone know of one?

If I try to visually show you what I need it would look like this.

< -- My back button [ image ] My next button -- >

I use jquery :) I've given plenty of rotators a shot already but they don't accept images of varying sizes or are not customizable.

like image 390
Darius Avatar asked Mar 29 '11 23:03

Darius


2 Answers

If all you need is image rotation, why not do it yourself?

It's only a few lines of jQuery and infinitely customizable. :)

Example: http://jsfiddle.net/jtbowden/UNZR5/1/

like image 83
Jeff B Avatar answered Sep 22 '22 22:09

Jeff B


I generally like to stick to using this one: http://jquery.malsup.com/cycle/

It can be as simple or as complex as you need, and is highly extensible. They also provide heaps of examples for what can be done with it.

Example with next/previous buttons here: http://jquery.malsup.com/cycle/int2.html

like image 42
Kirk Beard Avatar answered Sep 23 '22 22:09

Kirk Beard