1

我写了下面的代码。需要在 IE 版本上运行,所以使用过滤器进行旋转。点击按钮几次,这将更新图像的宽度,将重新定位图像。

任何帮助将不胜感激。

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Zoom Issue</title>

<style>
.ImgClass{
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
height : auto;
width : 100%;

}
.divClass{
width : 800px;
height : 750px;
}

</style>
</head>

<SCRIPT type="text/javascript">
function zoomImage(){
    document.getElementById('myImage').style.width = document.getElementById('myImage').offsetWidth  * 1.5;
}
</SCRIPT>

<body>
<input type="button" id='btnClick' value='Click' onClick="zoomImage();"/>
<DIV class='divClass'>
<IMG class='ImgClass' id='myImage' src='Image.jpg' />
</DIV>

</body>
</html>
4

1 回答 1

1

在我看来,好像您正在更改错误的维度。如果您将其侧向旋转,则宽度变为高度,高度变为宽度(除非您将头放在侧面):

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <title>Zoom Issue</title>
    <style>
    .ImgClass{
        filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
        height : 100%;
        width : auto;
    }
    .divClass{
        width : 800px;
        height : 750px;
    }
</style>
</head>

<SCRIPT type="text/javascript">
    function zoomImage(){   
        var img = document.getElementById('myImage');   
        img.style.height = e1.offsetHeight * 1.5 + "px";
    }
</SCRIPT>

<body>
    <input type="button" id='btnClick' value='Click' onClick="zoomImage();"/>
    <DIV class='divClass'>
        <img class='ImgClass' id='myImage' src="Images/IMG_6686.JPG">
    </DIV>
</body>
</html>

这在 IE8 中对我来说似乎很好用。

于 2012-11-08T16:05:47.320 回答