Im following the example on this page:
http://flowplayer.org/tools/demos/scrollable/navigation.htm
Is it possible?
Thanks!
Posts: 1867
Registered:
Nov 16, 2007
<div> <!-- This div is only here to separate the different scrollers -->
<div class"navi"></div> <!-- Navigation bullets -->
<a class="prev"> <!-- Previous Link -->
<div class="scrollable"> <!-- Scrollable container -->
<div class="items"> <!-- Container actually being scrolled -->
<div class="single-item"> <!-- Individual item inside of the scroller -->
*Content for #1*
</div>
<div class="single-item"> <!-- Individual item inside of the scroller -->
*Content for #2*
</div>
<div class="single-item"> <!-- Individual item inside of the scroller -->
*Content for #3*
</div>
</div> <!-- /.items -->
</div> <!-- /.scrollable -->
</div> <!-- /Wrapping div -->
<!-- Without any changes to the javascript, here's another scroller that works completely independent from the other scroller(s) -->
<div> <!-- This div is only here to separate the different scrollers -->
<div class"navi"></div> <!-- Navigation bullets -->
<a class="prev"> <!-- Previous Link -->
<div class="scrollable"> <!-- Scrollable container -->
<div class="items"> <!-- Container actually being scrolled -->
<div class="single-item"> <!-- Individual item inside of the scroller -->
*Content for #1*
</div>
<div class="single-item"> <!-- Individual item inside of the scroller -->
*Content for #2*
</div>
<div class="single-item"> <!-- Individual item inside of the scroller -->
*Content for #3*
</div>
</div> <!-- /.items -->
</div> <!-- /.scrollable -->
</div> <!-- /Wrapping div -->