Incapable d'agrandir les photos - HTML/CSS - Programmation
Marsh Posté le 07-12-2004 à 16:01:33
Avec ce bout de programme, les 6 photos déroulent les unes après les autres mais je ne réussis pas à les faire apparaitre un peu plus grande. <html> <head> <meta http-equiv="content-type" content="text/html;charset=ISO-8859-1"> <title>Fondation de l'UQTR - Joyeux Noël</title> <link href="fuq_fondation.css" rel="stylesheet" media="screen"> </head> <script type="text/javascript"> couv = new Array; couv[0] = 'noel/noel_4.jpg' couv[1] = 'noel/noel_5.jpg' couv[2] = 'noel/noel_6.jpg' couv[3] = 'noel/noel_7.jpg' couv[4] = 'noel/noel_8.jpg' couv[5] = 'noel/noel_9.jpg' num = 2 function ChangeImage() { if (num == -1) { num = (couv.length-1)} if(document.getElementById) { document.getElementById("zone" ).innerHTML ='<img src="'+ couv[num] + '"> '; num = num-1 } setTimeout("ChangeImage()", 2000); } window.onload = ChangeImage; //--> </script> <body bgcolor="#0077aa" text="black" link="black" vlink="black" alink="black" leftmargin="15" marginheight="15" marginwidth="15" topmargin="15"> <body text="#000000" bgcolor="#FFFFFF"> <table align="center"> <td><img src="noel/pn_guitare.gif"></td> -----> <td><div align="center" id="zone" width="450" height="230" border="0" alt=""></a></div></td> <td><img src="noel/pn_guitare.gif"></td> </table> <br><br>
Make sure you enter the(*)required information where indicate.HTML code is not allowed
Marsh Posté le 07-12-2004 à 16:01:33
Avec ce bout de programme, les 6 photos déroulent les unes après les autres mais je ne réussis pas à les faire apparaitre un peu plus grande.
<html>
<head>
<meta http-equiv="content-type" content="text/html;charset=ISO-8859-1">
<title>Fondation de l'UQTR - Joyeux Noël</title>
<link href="fuq_fondation.css" rel="stylesheet" media="screen">
</head>
<script type="text/javascript">
couv = new Array;
couv[0] = 'noel/noel_4.jpg'
couv[1] = 'noel/noel_5.jpg'
couv[2] = 'noel/noel_6.jpg'
couv[3] = 'noel/noel_7.jpg'
couv[4] = 'noel/noel_8.jpg'
couv[5] = 'noel/noel_9.jpg'
num = 2
function ChangeImage()
{
if (num == -1) { num = (couv.length-1)}
if(document.getElementById)
{
document.getElementById("zone" ).innerHTML ='<img src="'+ couv[num] + '"> ';
num = num-1
}
setTimeout("ChangeImage()", 2000);
}
window.onload = ChangeImage;
//-->
</script>
<body bgcolor="#0077aa" text="black" link="black" vlink="black" alink="black" leftmargin="15" marginheight="15" marginwidth="15" topmargin="15">
<body text="#000000" bgcolor="#FFFFFF">
<table align="center">
<td><img src="noel/pn_guitare.gif"></td>
-----> <td><div align="center" id="zone" width="450" height="230" border="0" alt=""></a></div></td>
<td><img src="noel/pn_guitare.gif"></td>
</table>
<br><br>