Can someone help on how i can trigger a slideshow with a single link. What i need to do is get all the images from my media but not displaying them but instead just a single link to get the slideshow to work.
There are many ways of doing, depending on the UI you wish to get... The most simple probably : you can load all your images in an invisible div, and then have one single link "View Slideshow" which, when clicked, would trigger a client-side event that would make the div visible.
Display a single url to trigger a slideshow
Hi all,
Can someone help on how i can trigger a slideshow with a single link. What i need to do is get all the images from my media but not displaying them but instead just a single link to get the slideshow to work.
Here "View Slideshow will repeat depending on number of image". How can i possibly display a single link instead?
Hi Fuji,
There are many ways of doing, depending on the UI you wish to get... The most simple probably : you can load all your images in an invisible div, and then have one single link "View Slideshow" which, when clicked, would trigger a client-side event that would make the div visible.
Hope this helps.
Cheers,
Michael.
May be i should only display the url of the first Image which will eventually trigger the slideshow.
Is that possible, that is display only the url of the first Image in a media folder ?
Any suggestion?
I managed to get the url of the first Image to trigger the slideshow but somehow am getting an extra image. The first image is displaying twice.
Here is my xslt
Any suggestion?
if you only want to display 1 link you can put this test inside your for loop:
<xsl:if test="position() = 1">
<a href.....
</a>
</xsl:if>
Hi Paul yes obviously.....what was i thinking of....
is working on a reply...