31
Hiho =)
...ich weiß, der Thread ist alt...
Ich wollte auch auf das script zurückgreifen, habe aber das Problem das er das Bild nicht findet. Ich teste online auf dem Server direkt.
Die *.htm sowie die picture.php liegen im root-ordner, das Bild liegt in /images/pic.jpg
Hier mal die *.htm, ich hab mal alles wichtige ausgeblendet.
Und hier die picture.php komplett
Kann mir vlt noch jemand sagen wo mein fehler liegt?
greez
Default
...ich weiß, der Thread ist alt...
Ich wollte auch auf das script zurückgreifen, habe aber das Problem das er das Bild nicht findet. Ich teste online auf dem Server direkt.
Die *.htm sowie die picture.php liegen im root-ordner, das Bild liegt in /images/pic.jpg
Hier mal die *.htm, ich hab mal alles wichtige ausgeblendet.
<html>
<head>
<title>test</title>
<script language="JavaScript">
<!--
var ns = (document.all)?false:true;
var browserVersion = parseFloat(navigator.appVersion );
PositionX = 100;
PositionY = 100;
defaultWidth = 420;
defaultHeight = 420;
if (parseInt(navigator.appVersion.charAt(0))>=4){
var isNN=(navigator.appName=="Netscape")?1:0;
var isIE=(navigator.appName.indexOf("Microsoft")!=-1)?1:0;
}
var optNN='scrollbars=no,width='+defaultWidth+',height='+defaultHeight+',left='+PositionX+',top='+PositionY;
var optIE='scrollbars=no,width=150,height=100,left='+PositionX+',top='+PositionY;
function popup(imageURL){
if (isNN){imgWin=window.open('picture.php?picname='+imageURL,'',optNN);}
if (isIE){imgWin=window.open('picture.php?picname='+imageURL,'',optIE);}
}
//-->
</script>
</head>
<body bgcolor="#C0C0C0">
<td width="25%" align="center">
<a href="javascript:popup('images/pic.jpg');">
<img border="0" src="[DOMAIN_MAL_AUSGEBLENDET]/Bilder/fotos/dom1_t.jpg" width="250" height="250"></a></td>
</body>
</html>
Und hier die picture.php komplett
<html>
<head>
<title>Bildergalerie</title>
<style type="text/css">
body { margin:0; padding:0; }
img { display:block; }
</style>
<script type="text/javascript">
var isNN,isIE;
if (parseInt(navigator.appVersion.charAt(0))>=4){
isNN=(navigator.appName=="Netscape")?1:0;
isIE=(navigator.appName.indexOf("Microsoft")!=-1)?1:0;
}
function reSizeToImage(){
if (isIE) {
window.resizeTo(100,100);
width=100-(document.body.clientWidth-document.images[0].width);
height=100-(document.body.clientHeight-document.images[0].height);
window.resizeTo(width,height);
}
if (isNN) {
window.innerWidth=document.images["pic0"].width;
window.innerHeight=document.images["pic0"].height;
}
}
</script>
</head>
<body bgcolor=000000 scroll="no" onload="reSizeToImage();self.focus()" onblur="self.close()">
<img id="pic0" name="pic0" src='<?=$_GET["picname"]?>'>
</body>
</html>
Kann mir vlt noch jemand sagen wo mein fehler liegt?
greez
Default