Tony
Tony

Reputation: 12715

Continued content slider in jQuery

I'm looking for a content slider in jQuery. That plugin http://net.tutsplus.com/tutorials/javascript-ajax/building-a-jquery-image-scroller/ is the most similar to this that I want. The change is, I don't want to see an empty space in the container when the last item hides on the left, I want that animation to be played continued. In the other words, I want to be the first item to be joined with the last item.

Does anyone know a plugin with that functionality ?

Upvotes: 0

Views: 113

Answers (1)

Codrin Eugeniu
Codrin Eugeniu

Reputation: 1383

You could use slideJS and enable its autoplay feature like in this example taken from their site:

 $("#slides").slides({
     play: 5000
 });

Upvotes: 2

Related Questions