/    Sign up×
Community /Pin to ProfileBookmark

Help! Slideshow with multiple windows

Hi –

I’m working on trying to modify a slideshow script so that I can run three slideshows in a row, at the same time.

Is this possible?

If you’d like to see what I’m attempting to do, please visit [URL=http://www.fond-regards.com/SlideshowMultipleWindows.html]Slideshow[/URL] – right now only the central panel features the slideshow – I’d like the other panels to run slideshows also.

Here’s the script I’m using:

[COLOR=orangered]<script language=”JavaScript”>
<!– Original: CodeLifter.com ([email protected]) –>
<!– Web Site: [url]http://www.codelifter.com[/url] –>

<!– This script and many more are available free online at –>
<!– The JavaScript Source!! [url]http://javascript.internet.com[/url] –>

<!– Begin
// Set slideShowSpeed (milliseconds)
var slideShowSpeed = 3000;
// Duration of crossfade (seconds)
var crossFadeDuration = 3;
// Specify the image files
var Pic = new Array();
// to add more images, just continue
// the pattern, adding to the array below

Pic[0] = ‘imgs/image1.jpg’
Pic[1] = ‘imgs/slideblank.jpg’
Pic[2] = ‘imgs/text3.jpg’
Pic[3] = ‘imgs/slideblank.jpg’
Pic[4] = ‘imgs/image3.jpg’
Pic[5] = ‘imgs/slideblank.jpg’
Pic[6] = ‘imgs/text2.jpg’
Pic[7] = ‘imgs/slideblank.jpg’
Pic[6] = ‘imgs/image2.jpg’
Pic[7] = ‘imgs/slideblank.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=3)”;
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);
}
// End –>
</script>
[/COLOR]

All suggestions welcome.

Thanks –
Robsta?

to post a comment
JavaScript

0Be the first to comment 😎

×

Success!

Help @robsta117 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,
)...