Supersized Slideshow (Updated 17/3/2011)

In this section you can share self-made extensions with other users of WYSIWYG Web Builder.
There is a dedicated section for commercial extensions.
Post Reply
smartmedia
 
 
Posts: 66
Joined: Wed Jan 26, 2011 7:51 pm
Location: Hellas

Supersized Slideshow (Updated 17/3/2011)

Post 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.
Last edited by smartmedia on Thu Mar 17, 2011 8:44 am, edited 2 times in total.
infogate
<script type="text/javascript">jQuery.noConflict();</script>
User avatar
zinc
 
 
Posts: 2146
Joined: Sat Dec 08, 2007 3:06 pm
Location: London, United Kingdom
Contact:

Re: Supersized Fullscreen Background Slideshow (Working)

Post 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.
Running WYSIWYG Web Builder since 2007...
User avatar
stamjoe
 
 
Posts: 230
Joined: Sat Feb 09, 2008 10:32 am
Location: GREECE

Re: Supersized Fullscreen Background Slideshow (Working)

Post by stamjoe »

Hey Chris, good morning,
thanks for your consideration about this extension.
Keep up.
Joe
smartmedia
 
 
Posts: 66
Joined: Wed Jan 26, 2011 7:51 pm
Location: Hellas

Re: Supersized Fullscreen Background Slideshow (Working)

Post 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.
infogate
<script type="text/javascript">jQuery.noConflict();</script>
User avatar
BaconFries
 
 
Posts: 5328
Joined: Thu Aug 16, 2007 7:32 pm

Re: Supersized Fullscreen Background Slideshow (Working)

Post 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>
Last edited by BaconFries on Mon Mar 14, 2011 7:52 pm, edited 1 time in total.
User avatar
zinc
 
 
Posts: 2146
Joined: Sat Dec 08, 2007 3:06 pm
Location: London, United Kingdom
Contact:

Re: Supersized Fullscreen Background Slideshow (Working)

Post 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>
Running WYSIWYG Web Builder since 2007...
User avatar
BaconFries
 
 
Posts: 5328
Joined: Thu Aug 16, 2007 7:32 pm

Re: Supersized Fullscreen Background Slideshow (Working)

Post 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....
User avatar
zinc
 
 
Posts: 2146
Joined: Sat Dec 08, 2007 3:06 pm
Location: London, United Kingdom
Contact:

Re: Supersized Fullscreen Background Slideshow (Working)

Post 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....
Running WYSIWYG Web Builder since 2007...
smartmedia
 
 
Posts: 66
Joined: Wed Jan 26, 2011 7:51 pm
Location: Hellas

Re: Supersized Fullscreen Background Slideshow (Working)

Post 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.
infogate
<script type="text/javascript">jQuery.noConflict();</script>
smartmedia
 
 
Posts: 66
Joined: Wed Jan 26, 2011 7:51 pm
Location: Hellas

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

Post by smartmedia »

The extension is available via Extension Download manager under the name Supersized Slide Show.
infogate
<script type="text/javascript">jQuery.noConflict();</script>
User avatar
stamjoe
 
 
Posts: 230
Joined: Sat Feb 09, 2008 10:32 am
Location: GREECE

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

Post by stamjoe »

Chris are u the best man.
Thanks very much for this.
Keep up.
Joe
User avatar
stamjoe
 
 
Posts: 230
Joined: Sat Feb 09, 2008 10:32 am
Location: GREECE

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

Post 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
User avatar
me.prosenjeet
 
 
Posts: 1265
Joined: Mon Dec 24, 2007 1:50 pm
Location: Lucknow
Contact:

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

Post 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
Check the new Chat GPT and Malware detect extensions at the link below

Check my WB Extensions
Check my WB Templates
---------------------------------------------------------
www.Lucknowwebs.com
User avatar
zinc
 
 
Posts: 2146
Joined: Sat Dec 08, 2007 3:06 pm
Location: London, United Kingdom
Contact:

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

Post by zinc »

SM please can update your extension with the latest version
Of this slideshow as it is awesome!
Running WYSIWYG Web Builder since 2007...
Post Reply