I have searched high and low, but have found very little to achieve my desired result, I am trying to take a bunch of images, and create a smooth auto scrolling horizontal image scroller, similar to this http://www.enova-tech.net/eng/lab/jmycarousel/1, the problem I have is that this plug-in was built on jQuery 1.3.2 if I am not mistaken, so I would like to create my own, but with the jQuery 1.4.2, so now to the question.
Any other plug-ins that you know of that can achieve the same kind of auto scrolling effect? If not, how should I go about creating a scroller like this?
The only thing that is boggling my mind is how I can get the scroller to auto scroll continuously, any ideas?
The HTML markup would look something like this:
HTML:
<div id="container">
<div><img src="/image1.jpg" /></div>
<div><img src="/image2.jpg" /></div>
<div><img src="/image3.jpg" /></div>
<div><img src="/image4.jpg" /></div>
<div><img src="/image5.jpg" /></div>
<div><img src="/image6.jpg" /></div>
<div><img src="/image7.jpg" /></div>
<div><img src="/image8.jpg" /></div>
</div>
Thanx in advance!