Bonjour voici mon problème que je rencontre, le bouton d'ouverture de lien et en croix rouge il n'apparait pas ?? voici le script .
ps: j'ai fait le teste sur mon premier bouton
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15 <script language="JavaScript"> <!-- Normal1 = new Image(); Normal1.src = "ac.gif"; /* entrez ici le premier graphique standard */ bouton1 = new Image(); bonton1.src = "design/ac1.gif"; /* entrez ici le premier graphique clair*/ /* etc... pour tous les autres graphiques utiliser */ function changeimage(imageno,objetimage) { window.document.images[imageno].src = objetimage.src; } //--> </script>
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15 <table width="100%" border="0"> <tr> <td bgcolor="#FFFFFF"> <div align="center"> <a href="index.php" onMouseOver="changeimage(0,bouton1)" onMouseOut="changeimage(0,Normal1)"><img src="design/ac.gif" width="88" height="32" border="0" /></a> <a href="annonce.php"><img src="design/ano.gif" width="89" height="32" border="0" /></a> <a href="contact.php"><img src="design/ct.gif" width="90" height="32" border="0" /></a> <a href="forum.php"><img src="design/forum.gif" width="83" height="32" border="0" /></a> <a href="liens.php"><img src="design/liens.gif" width="86" height="32" border="0" /></a> <img src="design/nouvel.gif" width="88" height="32" border="0" /> <a href="profil.php"><img src="design/pro.gif" width="85" height="32" border="0" /></a> <a href="deconnexion.php"><img src="design/dc.gif" width="80" height="32" border="0" /></a></div></td> </tr> </table>
Partager