/    Sign up×
Community /Pin to ProfileBookmark

picture rotator…help!

I have been trying all morning to get this rotator to work…for some reason all it does is display the first picture and then nothing…the following is the code…I installed the script in the <head> as specified,
then the call in the body tag and directed the first image as I was supposed to do…

<img src=”images/slideshow1_1.jpg” name=’SlideShow’ width=250 height=188>

what am I doing wrong…?

===========================================================
Script: JavaScript Cross-Browser SlideShow Script
With Cross-Fade Effect between Images
Adjustable Timing and Unlimited Images
Function: Displays images continuously in a slideshow
presentation format, with a fade effect on
image transitions.
Browsers: All common browsers: NS3-6, IE 4-6
Fade effect only in IE; others degrade gracefully

Author: etLux
===========================================================

Step 1.
Put the following script in the head of your page:

<script>
// (C) 2000 [url]www.CodeLifter.com[/url]
// [url]http://www.codelifter.com[/url]
// Free for all users, but leave in this header
// NS4-6,IE4-6
// Fade effect only in IE; degrades gracefully

// =======================================
// 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] = ‘1.jpg’
Pic[1] = ‘2.jpg’
Pic[2] = ‘3.jpg’
Pic[3] = ‘4.jpg’
Pic[4] = ‘5.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>

===========================================================

Step 2.
Put this onload event call in your body tag:

<body onload=”runSlideShow()”>

===========================================================

Step 3.
Put this in the body of your page where you want the
slide show to appear.

Set widths and heights same as images
Set image file same as first image in array Pic[] (above)

<table border=”0″ cellpadding=”0″ cellspacing=”0″>
<tr>
<td id=”VU” height=150 width=150>
<img src=”1.jpg” name=’SlideShow’ width=150 height=150></td>
</tr>
</table>

===========================================================

to post a comment
JavaScript

4 Comments(s)

Copy linkTweet thisAlerts:
@bialeckiJun 29.2008 — Do you have this page live anywhere where we can take a look?
Copy linkTweet thisAlerts:
@JPnycJun 29.2008 — Be careful what links you post to the forum, because you will not be able to remove them later.
Copy linkTweet thisAlerts:
@bialeckiJun 29.2008 — The image don't seem to exist or are in the wrong place. Can you get that working and let me know when it works again?
×

Success!

Help @netwurked spread the word by sharing this article on Twitter...

Tweet This
Sign in
Forgot password?
Sign in with TwitchSign in with GithubCreate Account
about: ({
version: 0.1.9 BETA 5.18,
whats_new: community page,
up_next: more Davinci•003 tasks,
coming_soon: events calendar,
social: @webDeveloperHQ
});

legal: ({
terms: of use,
privacy: policy
});
changelog: (
version: 0.1.9,
notes: added community page

version: 0.1.8,
notes: added Davinci•003

version: 0.1.7,
notes: upvote answers to bounties

version: 0.1.6,
notes: article editor refresh
)...
recent_tips: (
tipper: @AriseFacilitySolutions09,
tipped: article
amount: 1000 SATS,

tipper: @Yussuf4331,
tipped: article
amount: 1000 SATS,

tipper: @darkwebsites540,
tipped: article
amount: 10 SATS,
)...