I have one div 800px by 150px, and then some other divs inside that. The outer one have overflow hidden so you can't see what goes beyond the outer div. But i want users to be able to scroll through it horizontally to see more content. Also, I want to have a jquery script running where if they're not scrolling through it, it will automatically scroll.
Something like this:
<div id="mask" style="width: 800px; height: 150px; position: relative; overflow: hidden;">
<div id="inside-content"><img src="images/thing.jpg"></div>
<div id="inside-content"><img src="images/thing.jpg"></div>
<div id="inside-content"><img src="images/thing.jpg"></div>
</div>
Any thoughts on how to do this are welcome, thanks in advance!