- http://thisworldover.com/jquerytest/index2.php
Hi, i'm working on developing this great script out so that i can have the left side load as normal, but then have the 'previous' and 'next' buttons navigate a slideshow within the slideshow. Fr'instance, a click on "ad1" would load the first image in a series of 3 images that are a slideshow called "ad1". but instead of the images fading, they would scroll (similar to the "Prev/Next" demo on the http://www.malsup.com/jquery/cycle/int2.html page, except using 'scrollLeft' instead of 'fade'. and if anyone has tried this using php to load images, it'd be doubly helpful as i'm using the following code to call images... which will have to be adapted to include multiple calls.... ----------------------------------------------------------------- <div id="slideshow" style="border:1px solid #f00;" class="pics"> <? $dir = opendir("images"); $i=0; while (($file = readdir($dir)) !== false) { if (substr($file,0,1)!=".") { $i++; echo "<img class='thumbs' src='images/" . $file . "'>"; } } closedir($dir); ?> </div> ----------------------------------------------------------------- has anyone tried this? can the script support two slideshows, perhaps just by giving unique ids? thanks for your help. i'll be working on it in the meantime, but i'd still really appreciate any tips you might have! Phil