Bonjour,
Mon script fonctionne (changer d'image à intervalle régulier) mais je voudrais faire un fondu entre chaque image avec jquery. Comment faire ?
Merci de votre aide.
slr56
Code :
- <html>
- <head>
- </head>
- <body>
- <img src="1.jpg" width="950" height="120" id="image" />
- <script src="jquery.js"></script>
- <SCRIPT language="JavaScript" type="text/javascript">
- // Mon tableau qui contient toutes tes images.
- var images = new Array();
- images.push("1.jpg" );
- images.push("2.jpg" );
- images.push("3.jpg" );
- var pointeur = 0;
- function ChangerImage(){
- document.getElementById("image" ).src = images[pointeur];
- if(pointeur < images.length - 1){
- pointeur++;
- }
- else{
- pointeur = 0;
- }
- setTimeout("ChangerImage()", 5000)
- }
- // Charge la fonction
- window.onload = function(){
- ChangerImage();
- }
- </SCRIPT>
- </body>
- </html>
|
---------------
Configurations type du moment : https://forum.hardware.fr/hfr/Hardw [...] 1331_1.htm https://www.jouannetphotographe.com