有人可以解釋爲什麼這個代碼不起作用。瀏覽器以值vspace =「0」響應。這意味着算術表達式不正確,但爲什麼?居中在頁面中間的圖像
<script type="text/javascript">
function resizeImage()
{
var window_height = document.body.clientHeight
var window_width = document.body.clientWidth
var image_width = document.images[0].width
var image_height = document.images[0].height
var height_ratio = image_height/window_height
var width_ratio = image_width/window_width
var aspect_ratio = image_height/image_width
if (height_ratio > width_ratio)
{
document.images[0].style.width = "auto";
document.images[0].style.height = "100%";
}
else
{
var new_vspace = Math.round((window_height - window_width*aspect_ratio)/ 2);
document.images[0].style.width = "100%";
document.images[0].style.height = "auto";
document.images[0].vspace="new_vspace";
}
}
</script>
</head>
<BODY bgcolor=#000000 onresize="resizeImage()">
<script>
document.write('<center><img onload="resizeImage()" margin="0" border="0" src="nweshow/picture-0011.jpg"/></center>')
</script>
</body>
難道你不能只設置圖像的CSS屬性? – 2013-05-12 04:34:08
對這類事情使用CSS通常更快,更安全,並且在窗口調整大小時不會延遲。 – Greg 2013-05-12 04:40:15
而你的代碼適合我。你正在使用哪種瀏覽器? – Greg 2013-05-12 04:42:09