PDA

View Full Version : Is it possible for more than one slideshow?


Will
Dec-18-2006, 09:05 PM
I've got a slideshow on my opening homepage, and would like to know how I would have a different slideshow that would be linked to a selection on my nav bar? Here's my site: www.wdsnapshots.com (http://www.wdsnapshots.com)
As you'll see, there's a slideshow that automatically plays on the homepage, now, I'd like to add a slideshow when you select 'Galleries' and 'Misc'
Is this possible? Thanks for your help/suggestions/comments in advance.

Allen
Dec-18-2006, 09:34 PM
I've got a slideshow on my opening homepage, and would like to know how I would have a different slideshow that would be linked to a selection on my nav bar? Here's my site: www.wdsnapshots.com (http://www.wdsnapshots.com)
As you'll see, there's a slideshow that automatically plays on the homepage, now, I'd like to add a slideshow when you select 'Galleries' and 'Misc'
Is this possible? Thanks for your help/suggestions/comments in advance.
I have seven different shows and one, here (http://www.dgrin.com/showthread.php?t=49207), has a menu to change to
different galleries. Look at my page source footer code here (http://atsmith.smugmug.com/gallery/1760188).

Create a new gallery and put the show in the gallery description.
<div id="2ndShow"><div>

For each different slideshow you have to define the container, something
like this in your slideshow footer.

else if (YD.hasClass(document.body,"gallery_xxxxxxx"))
{
slideshowContainerId = "2ndShow";
slideshowUrl = "paste sourse gallery link here";
randomSlides = true;
.
.


xxxxxxx being the new created gallery and your navbar
would link to the new gallery.
Al

bwg
Dec-19-2006, 04:59 AM
I have seven different shows and one, here (http://www.dgrin.com/showthread.php?t=49207), has a menu to change to
different galleries. Look at my page source footer code here (http://atsmith.smugmug.com/gallery/1760188).

Create a new gallery and put the show in the gallery description.
<div id="2ndShow"><div>

For each different slideshow you have to define the container, something
like this in your slideshow footer.

else if (YD.hasClass(document.body,"gallery_xxxxxxx"))
{
slideshowContainerId = "2ndShow";
slideshowUrl = "paste sourse gallery link here";
randomSlides = true;
.
.


xxxxxxx being the new created gallery and your navbar
would link to the new gallery.
AlYou the man Allen.