I have Flex Grid Magic page with 80 images.
IS it possible to install a Fullscreen Slide Show with a trigger on each image so that when an image is selected the FSSS will load with the selected image as the start point?
Multiple triggers for Fullscreen Slide Show?
(5 posts) (2 voices)-
Posted 7 months ago
-
Yes, you would use the FSS Control behavior to assign the open FSS behavior to each image.
Have a look at the Control Actions section of the user guide;
https://www.projectseven.com/products/galleries/fss/tutorials/guide/index.htm#controlac
Posted 7 months ago -
PERFECT!
Thank you!
Posted 7 months ago -
Apparently this is a bit above my head. When I add the code given in the users manual it ads text on the screen above each image that does start the slide show but what I am trying to accomplish is for the user to click on the image itself (no added text links) to start the slide show with that particular full size image the way my Flex Grid images act..
My Flex Grid code (for 80 slides) is:
<div class="fgm-section fgm-fit-image" data-fgm-basis="20,%">
<div class="fgm-img"><a href="images/FS/01.JPG"><img src="images/01.JPG" alt="Image-01"></a></div>
</div>
<div class="fgm-section fgm-fit-image" data-fgm-basis="20,%">
<div class="fgm-img"><a href="images/FS/02.JPG"><img src="images/02.JPG" alt="Image-02"></a></div>
</div>Any help at all would be appreciated. Thanks!
Posted 7 months ago -
You would a FSS control action to the <a> tag on each image.
For example, the first image <a> tag looks like this:
<a href="images/FS/01.JPG"><img src="images/01.JPG" alt="Image-01"></a>
add this:
onclick="P7_FSSctrl('p7FSS_1',1);return false;"
so the <a> tag will now looks like this:
<a href="images/FS/01.JPG" onclick="P7_FSSctrl('p7FSS_1',1);return false;"><img src="images/01.JPG" alt="Image-01"></a>
Repeat for the other <a> tags, each time changing the image number to reflect that image.
Posted 7 months ago
Reply
You must log in to post.