Page 1 of 1

Supersized Slideshow (Updated 17/3/2011)

Posted: Sun Mar 13, 2011 6:37 am
by smartmedia
Version 1.0.0.1
Build with 2.6.0 Extension builder

Making extension is a nice hobby but takes time, any body who has build at least one knows that. Consider to donate some money for coffees in paypal at smartmediagr@gmail.com

Image
More about
http://buildinternet.com/project/supersized/

Updates:
nav-bg.png added as embedded as forgotten in initial version.

The extension is available via Extension Download manager under the name Supersized Slide Show.

Re: Supersized Fullscreen Background Slideshow (Working)

Posted: Sun Mar 13, 2011 7:21 am
by zinc
Hey Man;
I know the feeling but but usually BF comes to my rescue. I have built this one for my own website and use it but never released it. You are doing a great job.

Re: Supersized Fullscreen Background Slideshow (Working)

Posted: Mon Mar 14, 2011 12:56 pm
by stamjoe
Hey Chris, good morning,
thanks for your consideration about this extension.
Keep up.
Joe

Re: Supersized Fullscreen Background Slideshow (Working)

Posted: Mon Mar 14, 2011 5:47 pm
by smartmedia
Hi..

I am facing some problems on how i will add the images in Galley because the images are included inside Javascript array. Question: Do i need to use xsl..??? Any help appreciated.

Re: Supersized Fullscreen Background Slideshow (Working)

Posted: Mon Mar 14, 2011 6:52 pm
by BaconFries
Yer it be best to write a xsl for this I did help bendigo with this, but for the life of me I cant find the xsl file and it would take me a bit of time to rewrite and test hpefull he will see this and he might still have a copy of the xsl file you can use...

Ok update on this I have looked at the js and to call the images you would need a xsl that be similar to this

In the code do this
[
$images$
{image : "$lastimage$", title : "$title$, url : "$url$"} <<< this is the last image and doest need a ,
]

Then build a xsl using code below pointing it to $images$ this will insert all the other images,titles and urls if you notice each one ends with a , but the last image that is why I an suggeting you write as I have described

Code: Select all

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:template match='/'>
<xsl:for-each select="GALLERY/IMAGE">
<xsl:text>[ { image:"</xsl:text>
<xsl:value-of select="FILENAME"/>
<xsl:text>",</xsl:text>
<xsl:text>title :"</xsl:text>
<xsl:value-of select="TITLE"/>
<xsl:text>","</xsl:text>
<xsl:text>url :</xsl:text>
<xsl:value-of select="URL"/>
<xsl:text>" },]
</xsl:text>
</xsl:for-each>
</xsl:template>
</xsl:stylesheet>

Re: Supersized Fullscreen Background Slideshow (Working)

Posted: Mon Mar 14, 2011 7:20 pm
by zinc
Yes BF Did write me a new XSL

<?xml version="1.0" encoding="UTF-8" ?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:output method="html" />
<xsl:template match="/">
<xsl:for-each select="GALLERY/IMAGE">
<a href="{URL}"><img src="{FILENAME}" title="{TITLE}" /></a>
</xsl:for-each>
</xsl:template>
</xsl:stylesheet>

Re: Supersized Fullscreen Background Slideshow (Working)

Posted: Mon Mar 14, 2011 7:23 pm
by BaconFries
Looking at the new code I think it draws the image into the script in a different way now bendigo, if you still have all the original files can you email them at the usual address were I can compare yours to the new ones and check for differences...I have went through old emails but cant find anything....

Re: Supersized Fullscreen Background Slideshow (Working)

Posted: Mon Mar 14, 2011 7:31 pm
by zinc
BaconFries wrote:Looking at the new code I think it draws the image into the script in a different way now bendigo, if you still have all the original files can you email them at the usual address were I can compare yours to the new ones and check for differences...I have went through old emails but cant find anything....

on its way to you now mate....

Re: Supersized Fullscreen Background Slideshow (Working)

Posted: Mon Mar 14, 2011 7:56 pm
by smartmedia
Hi..

Now i get it some how, how is working. I change a little the FB code in order to work.

Code: Select all

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:template match='/'>
<xsl:for-each select="GALLERY/IMAGE">
<xsl:text>{image: '</xsl:text>
<xsl:value-of select="FILENAME"/>
<xsl:text>', title:'</xsl:text>
<xsl:value-of select="TITLE"/>
<xsl:text>', url:'</xsl:text>
<xsl:value-of select="URL"/>
<xsl:text>' },
</xsl:text>
</xsl:for-each>
</xsl:template>
</xsl:stylesheet>
Thanks both of you.

Re: Supersized Slideshow (Released 16/3/2011)

Posted: Wed Mar 16, 2011 9:40 pm
by smartmedia
The extension is available via Extension Download manager under the name Supersized Slide Show.

Re: Supersized Slideshow (Updated 17/3/2011)

Posted: Thu Mar 17, 2011 3:04 pm
by stamjoe
Chris are u the best man.
Thanks very much for this.
Keep up.
Joe

Re: Supersized Slideshow (Updated 17/3/2011)

Posted: Thu Mar 17, 2011 3:10 pm
by stamjoe
I just test it. Works fine.
Question 1. how can i disable the bottom photos if i want to use it only with the original background photos?
Question 2. Which is the suggested picture size for 1024X768 monitors?
Thanks again.
Joe

Re: Supersized Slideshow (Updated 17/3/2011)

Posted: Thu May 19, 2011 3:29 am
by me.prosenjeet
Somehow this doesnt seem to work for me.
Added two images, kept the variables to default....I see a black screen with the default footer...no images.
Any help!
Ok, it works on FF but not in IE8
http://lucknowwebs.com/1087_test

Re: Supersized Slideshow (Updated 17/3/2011)

Posted: Sun Feb 12, 2012 9:23 am
by zinc
SM please can update your extension with the latest version
Of this slideshow as it is awesome!