miltonis | Pour précision voici ce que je désire exactement :
j'ai une page qui est censée ouvrir au click d'uen vignette une pop up avec l'image aggrandie. la page qui ouvre la popup contient :
Code :
- <head>
- <SCRIPT LANGUAGE="JavaScript">
- function afficheVignette(cheminVignette,cheminMaxi)
- {
- document.write('<A HREF="javascript:afficheMaxi(\''+cheminMaxi+'\')"><IMG SRC="'+cheminVignette+'" HSPACE=0 VSPACE=0 BORDER=0 ALT="cliquez ici pour voir en grand"></A>');
- }
- function afficheMaxi(chemin)
- {
- i1 = new Image;
- i1.src = chemin;
- html = <? include("popup.php" ); ?>;
- //html = '<HTML><HEAD><TITLE>Image</TITLE></HEAD><BODY LEFTMARGIN=0 MARGINWIDTH=0 TOPMARGIN=0 MARGINHEIGHT=0><CENTER><IMG SRC="'+chemin+'" BORDER=0 NAME=imageTest></CENTER></BODY></HTML>';
- popupImage = window.open('','_blank','toolbar=0,location=0,directories=0,menuBar=0,scrollbars=0,resizable=1');
- popupImage.document.open();
- popupImage.document.write(html);
- popupImage.document.close()
- };
- </SCRIPT>
- </head>
|
et la page popup
Code :
- <head>
- <SCRIPT>
- <!-- Hide script from older browsers
- thisImg = 1
- imgCt = 5
- function newSlide(direction) {
- if (document.images) {
- thisImg = thisImg + direction
- if (thisImg < 1) {
- thisImg = imgCt
- }
- if (thisImg > imgCt) {
- thisImg=1
- }
- document.slider.src = thisImg + ".jpg"
- }
- }
- </SCRIPT>
- </head>
- <body bgcolor="#5898a8">
- bla bla
- </body>
|
comme ça c'est plus clair!
merci encore |