Diaporama photos aleatoires + fondu
Résolu/Fermé
A voir également:
- Diaporama photos aleatoires + fondu
- Partage de photos - Guide
- Mes photos google - Guide
- Faire un diaporama photo avec musique windows 10 - Guide
- Doublons photos - Guide
- Google photos - Télécharger - Albums photo
3 réponses
adns
Messages postés
1094
Date d'inscription
vendredi 23 février 2007
Statut
Membre
Dernière intervention
27 mars 2012
153
6 juil. 2011 à 11:50
6 juil. 2011 à 11:50
Bonjour,
tu as un code à nous soumettre pour que l'on t'aide ?
car si tu viens ici pour que l'on fasse le boulot à ta place il va falloir mettre la main au porte monnaie :)
Adns
tu as un code à nous soumettre pour que l'on t'aide ?
car si tu viens ici pour que l'on fasse le boulot à ta place il va falloir mettre la main au porte monnaie :)
Adns
adns
Messages postés
1094
Date d'inscription
vendredi 23 février 2007
Statut
Membre
Dernière intervention
27 mars 2012
153
7 juil. 2011 à 15:19
7 juil. 2011 à 15:19
Jai du remplacer les images pour pouvoir tester..
Mais cela fonctionne si tu as besoin d'explications n'hésite pas
Mais cela fonctionne si tu as besoin d'explications n'hésite pas
<script src="http://code.jquery.com/jquery-1.6.2.js"></script> <script language="javascript"> /* Random image slideshow- By Tyler Clarke (tyler@ihatecoffee.com) For this script and more, visit http://www.javascriptkit.com */ var delay=3000; //set delay in miliseconds var curindex=0; var randomimages=new Array(); randomimages[0]="http://t1.gstatic.com/images?q=tbn:ANd9GcSM82IEtpybpnUi2y1EDFqAcZxFWRwUN5xz95dWOmEXbQvSzzBg"; randomimages[1]="http://t0.gstatic.com/images?q=tbn:ANd9GcQZfYQnPDFd3y42rhF_MWOW2c-pW5_IOJt0BNNoXb_cAIFI9sUt"; randomimages[2]="http://t1.gstatic.com/images?q=tbn:ANd9GcSUS2U9nOKF9FGaxGHTvPEr4zEQWZNHSDq0PiwSkEwnNszONq0CVA"; randomimages[3]="http://t1.gstatic.com/images?q=tbn:ANd9GcST_vPOfTXVwaf_GIlSIRXdeku84czAzIz0Co3G29uJlL9R1W3i"; randomimages[4]="http://t0.gstatic.com/images?q=tbn:ANd9GcS1LkEGsT9NlLEm2semMWO6gpw4remCt1X4XcLF_7-l-JXNHooo"; randomimages[5]="http://t0.gstatic.com/images?q=tbn:ANd9GcQitbjkZvBjG_Ud-RmdPQaRkGeN-pYgXDdaVew4mJw5yFPjQCBShw"; var preload=new Array(); for (n=0;n<randomimages.length;n++){ preload[n]=new Image(); preload[n].src=randomimages[n]; } function rotateimage(){ if (curindex==(tempindex=Math.floor(Math.random()*(randomimages.length)))) curindex=curindex==0? 1 : curindex-1; else curindex=tempindex; $("#defaultimage").fadeOut(500,function(){ $("#defaultimage").attr("src",randomimages[curindex]); $("#defaultimage").fadeIn(500); }); } document.write('<img id="defaultimage" src="'+randomimages[Math.floor(Math.random()*(randomimages.length))]+'" class="slideshow" />'); setInterval("rotateimage()",delay); </script>
chouk571
Messages postés
4
Date d'inscription
mercredi 6 juillet 2011
Statut
Membre
Dernière intervention
11 juillet 2011
7 juil. 2011 à 15:58
7 juil. 2011 à 15:58
Vu que je suis nul en javascript je saisi pas du tout le script que j'ai dès le départ mais en faisant preuve de logique et si j'ai bien compris, tu appelles la bibliotheque jQuery et tu incorpore la fonction FadeIn / FadeOut c'est bien ça
adns
Messages postés
1094
Date d'inscription
vendredi 23 février 2007
Statut
Membre
Dernière intervention
27 mars 2012
153
7 juil. 2011 à 15:59
7 juil. 2011 à 15:59
C'est ca juste avec de changer l'image j'utilise fadeOut et apres avoir changer l'image j'utilise fadeIn
chouk571
Messages postés
4
Date d'inscription
mercredi 6 juillet 2011
Statut
Membre
Dernière intervention
11 juillet 2011
7 juil. 2011 à 16:01
7 juil. 2011 à 16:01
Ca marche nickel, merci BEAUCOUP en tout cas
adns
Messages postés
1094
Date d'inscription
vendredi 23 février 2007
Statut
Membre
Dernière intervention
27 mars 2012
153
8 juil. 2011 à 07:53
8 juil. 2011 à 07:53
Place ton sujet en résolu donc :)
6 juil. 2011 à 19:32