views:

184

answers:

2

Currently in jCarousel auto play example , when you click the next or previous button it will continue to its current state, (scroll from right to left). what i want is, is it possible when you click next it will save its direction (scrolling from left to right).

A: 

From what I can see the jCarousel plugin doesn't support this. So there doesn't seem to be an easy way to do this, without rewriting the plugin

I tried a quick hack without rewriting (external timer, manually calling carousel.prev() and similar ideas) but the internals of the plugin keept getting in the way.

jitter
A: 

Check my site

http://tech.c-dan.com/cweaks.aspx (Solution + demo + additional functionality (2 carousels in opposite directions in the same page)(changing next to prev soln causes all carousels on the page to reverse, so I rewrote a function in the js file))

Explained in detail on my page...

Thanks C-DAN

C-DAN