PHP/Javascriptで画像表示の拡大
PHP/JavaScript初心者です。
IE7でウィンドウに表示している画像を
ウィンドウが拡大したことにより、画像も拡大したいのですがどうすればいいですか?
IE8では違う方法できましたが、IE7ですとIE8でできた方法がだめで
質問させていただきます。
関連するPHPファイルで
JavaScriptのwindow.open(xxx,width=800,height=600)で以下のPHPファイルを呼ぶようにしてます。
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitio …
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja" lang="ja">
<head>
<title>文献表示</title>
<meta http-equiv="Pragma" content="No-Cashe" />
<meta http-equiv="Cache-Control" content="No-Cache" />
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta http-equiv="Content-Script-Type" content="text/javascript" />
<meta http-equiv="Content-Style-Type" content="text/css" />
<meta http-equiv="Content-Type: image/jpeg" />
<!--
//-->
<script type="text/javascript">
<!--
function win_zoom(){
var browse=navigator.appName;
document.dspimg.style.visibility="hidden";
document.dspimg.style.visibility="visible";
window.resizeTo(900,700) *ウィンドウサイズを拡大拡大したことにより画像も拡大したい?
location.reload();
}
//-->
</script>
<!--
//-->
</head>
<body>
<?php
$fold= $_GET['fold'];
$no= $_GET['no'];
$jpgFiles = glob($fold . "*.JPG");
$cnt = count($jpgFiles);
?>
<?php
//画像表示
echo '<div align="center">';
<?php
// 2011.04.28T.Yamada Update Start
//拡大
?>
<INPUT type="button" Value="拡大" onclick="win_zoom()" >
</div>
</body>
</html>
</head>
<body>
<?php
$fold = $_GET['fold'];
$no = $_GET['no'];
$jpgFiles = glob($fold . "*.JPG");
$cnt = count($jpgFiles);
?>
<?php
//画像表示
echo '<img name="dspimg" src="' . $jpgFiles[$no] . '" alt="' . $jpgFiles[$no] . '" width=800 height=600 " />';
// *** oku update end
//echo '<hr />';
echo '<div align="center">';
<?php
// 2011.04.28 T.Yamada Update Start
//拡大
?>
<INPUT type="button" Value="拡大" onclick="win_zoom()" >
</div>
</body>
</html>
補足
http:xxxxxxxxxxxx.php ってかんじのやつです