+ Reply to Thread
Results 1 to 1 of 1
Thread: Fading Slide Show
-
03-20-2010 03:26 AM #1
Senior Member
- Join Date
- Jul 2009
- Posts
- 185
- Downloads
- 0
- Uploads
- 0
Fading Slide Show
Displays images continuously in a slideshow presentation format, with a fade effect on image transitions. (Fade in Internet Explorer 4+ only).... detail at JavaScriptBank.com - 2.000+ free JavaScript codes
How to setup
Step 1: Use JavaScript code below to setup the script
JavaScript
Step 2: Place HTML below in your BODY sectionCode:<script> /* Original: CodeLifter.com (support@codelifter.com) Web Site: http://www.codelifter.com */ // set the following variables // Set slideShowSpeed (milliseconds) var slideShowSpeed = 5000 // Duration of crossfade (seconds) var crossFadeDuration = 3 // Specify the image files var Pic = new Array() // don't touch this // to add more images, just continue // the pattern, adding to the array below Pic[0] = 'logojs.gif' Pic[1] = 'photo3.jpg' Pic[2] = 'logojs.gif' Pic[3] = 'photo5.jpg' Pic[4] = 'photo2.jpg' // do not edit anything below this line var t var j = 0 var p = Pic.length var preLoad = new Array() for (i = 0; i < p; i++){ preLoad[i] = new Image() preLoad[i].src = Pic[i] } function runSlideShow(){ if (document.all){ document.images.SlideShow.style.filter="blendTrans(duration=2)" document.images.SlideShow.style.filter="blendTrans(duration=crossFadeDuration)" document.images.SlideShow.filters.blendTrans.Apply() } document.images.SlideShow.src = preLoad[j].src if (document.all){ document.images.SlideShow.filters.blendTrans.Play() } j = j + 1 if (j > (p-1)) j=0 t = setTimeout('runSlideShow()', slideShowSpeed) } </script> <!-- This script downloaded from www.JavaScriptBank.com Come to view and download over 2000+ free javascript at www.JavaScriptBank.com -->
HTML
Code:<body onLoad="runSlideShow()"> <img id="VU" src="logojs.gif" name='SlideShow'> </body> <!-- This script downloaded from www.JavaScriptBank.com Come to view and download over 2000+ free javascript at www.JavaScriptBank.com -->
Similar Threads
-
Gold Tops $1,000, Highest Since March, as Global Equities Slide
By TeamPlayer in forum General Webmaster DiscussionsReplies: 3Last Post: 02-21-2009, 03:30 PM -
Show off your blog
By temi in forum Blogs and BloggingReplies: 18Last Post: 02-20-2009, 04:06 PM -
Show off your blog here :)
By temi in forum Blogs and BloggingReplies: 5Last Post: 08-16-2008, 01:56 PM -
.eu users, show your faces now.
By WEBDOMAIN.com in forum General Webmaster DiscussionsReplies: 7Last Post: 06-26-2007, 01:30 PM -
Graphics program show off
By alexandru in forum Web Design & Graphic DesignReplies: 0Last Post: 01-24-2005, 02:17 PM


LinkBack URL
About LinkBacks
Reply With Quote



Bookmarks