Js menu et images defilantes simultanement

Fermé
moneyowner Messages postés 4 Date d'inscription samedi 22 novembre 2008 Statut Membre Dernière intervention 12 octobre 2011 - 12 oct. 2011 à 02:27
moneyowner Messages postés 4 Date d'inscription samedi 22 novembre 2008 Statut Membre Dernière intervention 12 octobre 2011 - 12 oct. 2011 à 03:13
Bonjour,

Je suis nouvo en web mastering j'ai un projet a excecuter qui demande des codes javascript, je voudrais reproduire le site prg.com mais je n'arrive pas a trouver des codes pouvant me permettre de reproduire le menu defilant en meme temps que les images.
mes recherches m'ont permis de trouver le code ci dessous mais la barre de menu n'est pas prise en compte SVP J'ai besoin de regler ce probleme dans 2heures qui suivent merci pour votre contribution
<!-- DEBUT DU SCRIPT -->
<SCRIPT LANGUAGE="JavaScript">
/*
SCRIPT EDITE SUR L'EDITEUR JAVASCRIPT
http://www.editeurjavascript.com
*/
imgPath = new Array;
SiClickGoTo = new Array;
if (document.images)
	{
	i0 = new Image;
	i0.src = 'images/1.jpg';
	SiClickGoTo[0] = "https://www.google.com/?gws_rd=ssl";
	imgPath[0] = i0.src;
	i1 = new Image;
	i1.src = 'images/2.jpg';
	SiClickGoTo[1] = "https://www.google.com/?gws_rd=ssl";
	imgPath[1] = i1.src;
	i2 = new Image;
	i2.src = 'images/3.jpg';
	SiClickGoTo[2] = "https://www.google.com/?gws_rd=ssl";
	imgPath[2] = i2.src;
	i3 = new Image;
	i3.src = 'images/4.jpg';
	SiClickGoTo[3] = "https://www.google.com/?gws_rd=ssl";
	imgPath[3] = i3.src;
	i4 = new Image;
	i4.src = 'images/5.jpg';
	SiClickGoTo[4] = "https://www.google.com/?gws_rd=ssl";
	imgPath[4] = i4.src;
	i5 = new Image;
	i5.src = 'images/6.jpg';
	SiClickGoTo[5] = https://www.google.com/?gws_rd=ssl";
	imgPath[5] = i5.src;
	i6 = new Image;
	i6.src = 'images/7.jpg';
	SiClickGoTo[6] = "https://www.google.com/?gws_rd=ssl";
	imgPath[6] = i6.src;
	}
a = 0;
function ejs_img_fx(img)
	{
	if(img && img.filters && img.filters[0])
		{
		img.filters[0].apply();
		img.filters[0].play();
		}
	}

function StartAnim()
	{
	if (document.images)
		{
		document.write('<A HREF="#" onClick="ImgDest();return(false)"><IMG SRC="images/1.jpg" BORDER=0 ALT=Menu NAME=defil style="filter:progid:DXImageTransform.Microsoft.Pixelate(MaxSquare=100,Duration=1)"></A>');
		defilimg()
		}
	else
		{
		document.write('<A HREF="http://http://www.google.com"><IMG SRC="images/1.jpg" BORDER=0></A>')
		}
	}
function ImgDest()
	{
	document.location.href = SiClickGoTo[a-1];
	}
function defilimg()
	{
	if (a == 7)
		{
		a = 0;
		}
	if (document.images)
		{
		ejs_img_fx(document.defil)
		document.defil.src = imgPath[a];
		tempo3 = setTimeout("defilimg()",5000);
		a++;
		}
	}
</SCRIPT>
<!-- FIN DU SCRIPT -->
<!-- DEBUT DU SCRIPT -->
<!--
SCRIPT EDITE SUR L'EDITEUR JAVASCRIPT
http://www.editeurjavascript.com/scripts/scripts_images_1_55.php
-->
<SCRIPT LANGUAGE="JavaScript">
StartAnim()
</SCRIPT>
<!-- FIN DU SCRIPT --><noscript><a href="http://www.editeurjavascript.com/">ajax</a></noscript>


A voir également:

1 réponse

moneyowner Messages postés 4 Date d'inscription samedi 22 novembre 2008 Statut Membre Dernière intervention 12 octobre 2011
12 oct. 2011 à 03:13
up
0