grüßt euch,
ich hab ein kleines Problem, was die Größe eines Popups anbelangt: rechts neben dem Bild, welches in das Popup geladen wird, ist noch ein kleiner weißer Freiraum, den ich nicht wegbekomme.
Damit ihr eine bessere Vorstellung von meinem Problem bekommt, habe ich das mal auf meinen Webspace geuploaded - bitte schön: KLICK
Ansonsten funktioniert das Script einwandfrei. Hier ist der Code:
Danke für eure Hilfe
ich hab ein kleines Problem, was die Größe eines Popups anbelangt: rechts neben dem Bild, welches in das Popup geladen wird, ist noch ein kleiner weißer Freiraum, den ich nicht wegbekomme.
Damit ihr eine bessere Vorstellung von meinem Problem bekommt, habe ich das mal auf meinen Webspace geuploaded - bitte schön: KLICK
Ansonsten funktioniert das Script einwandfrei. Hier ist der Code:
HTML:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Unbenanntes Dokument</title>
<script type="text/javascript">
function open_image(imageName,imageWidth,imageHeight,alt) {
var left = (screen.width/2)-(imageHeight/2);
var top = (screen.height/2)-(imageWidth/2);
newWindow = window.open("Image","newWindow","width="+imageWidth+",height="+imageHeight+",left="+left+",top="+top);
newWindow.document.open();
newWindow.document.write('<html><title>'+alt+'</title><body bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginheight="0" marginwidth="0" onBlur="self.close()">');
newWindow.document.write('<img src='+imageName+' width='+imageWidth+' height='+imageHeight+' alt='+alt+'>');
newWindow.document.write('</body></html>');
newWindow.document.close();
newWindow.focus();
}
</script>
</head>
<?
if (file_exists("media/logo.gif")) {
$size = GetImageSize("media/logo.gif");
?>
<a href="javascript:open_image('media/logo.gif',<? echo $size[0]; ?>,<? echo $size[1]; ?>,'Image')"> <img src="media/icon_photo.gif" border="0" /></a>
<?
}
else { echo "Datei ist nicht vorhanden"; }
?>
<body>
</body>
</html>
Danke für eure Hilfe