»
AnglaisFrançaisVietnamien

Imprimer - Deux façon diaporama - JavaScriptBank.com

Version complète: jsB@nk » Image » Diaporama » Deux façon diaporama
URL: https://www.javascriptbank.com/two-way-slideshow.html

Deux façon diaporama © JavaScriptBank.comGère un image dans le diaporama arrière-plan de la page, sous le contenu de la page. Utilisé avec le style d'accompagnement script, les images sont discrètement positionnés dans la page de l'espace, comme un diaporama. Laissez le script de style, et le diaporama s'exécute avec pleine page d'espace de présentation. IE 4.0 + ou NS 6,0 (dégrade gracieusement dans d'autres).

Version complète: jsB@nk » Image » Diaporama » Deux façon diaporama
URL: https://www.javascriptbank.com/two-way-slideshow.html



CSS
<style>body{background-repeat: no-repeat;background-position: center center;}</style><!--    This script downloaded from www.JavaScriptBank.com    Come to view and download over 2000+ free javascript at www.JavaScriptBank.com-->


JavaScript
<SCRIPT LANGUAGE="JavaScript">// =======================================// set the following variables// =======================================// Set speed (milliseconds)var speed = 1000// Specify the image filesvar Pic = new Array() // don't touch this// to add more images, just continue// the pattern, adding to the array belowPic[0] = 'logojs.gif'Pic[1] = 'photo3.jpg'Pic[2] = 'photo4.jpg'Pic[3] = 'photo5.jpg'// do not edit anything below this linevar tvar j = 0var p = Pic.lengthvar preLoad = new Array()for (i = 0; i < p; i++){   preLoad[i] = new Image()   preLoad[i].src = Pic[i]}function runBGSlideShow(){   if (document.body){   document.body.background = Pic[j];   j = j + 1   if (j > (p-1)) j=0   t = setTimeout('runBGSlideShow()', speed)   }}//  End --></script><!--    This script downloaded from www.JavaScriptBank.com    Come to view and download over 2000+ free javascript at www.JavaScriptBank.com-->


HTML
<body onload="runBGSlideShow()"></body><!--    This script downloaded from www.JavaScriptBank.com    Come to view and download over 2000+ free javascript at www.JavaScriptBank.com-->