re,
pas tres clair ton truc ...
voici un script à inserer entre les balises <head> de la page contenant les miniatures.
<script language="javaScript">
function seeMeBig(way,tit)
{
html = '<html><head><title>'+tit+'</title></head><body leftmargin=0 marginwidth=0 topmargin=0 marginheight=0><center><img src="'+way+'" border=0 name=mypict onclick="window.close();" style="cursor: hand" title="clic pour fermer" onload="window.resizeTo(document.mypict.width+14,document.mypict.height+32)"></center></body></html>';
popupImage = window.open('','pop','toolbar=0,location=0,directories=0,menuBar=0,scrollbars=0,resizable=1,width=450,height=300');
popupImage.document.open();
popupImage.document.write(html);
popupImage.document.close()
};
</SCRIPT>
voici un exemple de lien :
<img src="101s.jpg" onClick="seeMeBig('101.jpg','photo1');return false;" style="cursor: hand;">
d'autres exemples de scripts pour ouvrir une photo dans un popup :
Bluejayway++
L.