使用jQuery在加载完成后缩放div中的图像

4

我有一些缩略图,当你点击它们时,我会弹出一个带有DIV的模态框,并且我想将DIV从更大的图像缩小到50%的宽度/高度。

我想知道下面这种缩放方法是否适用于800x530像素的图像,而且能够跨浏览器实现:

#foo-img { width: 100%; height: 100%; }
#foo-div {
    width: 400px; height: 265px;
    padding: 10px; background: black;
}

<div id="foo-div">
    <img id="foo-img" src="img/003.jpg" />
</div>

我似乎无法仅设置#foo-img的宽度/高度属性,因为每次加载新图像时,它都会缩小50%!

这里有一些可行的方法,但对我来说代码量太多了:

var rnd = Math.floor(Math.random() * 101)

$("a.loadimg").click(function() {
    // resets the DIV
    imgLoadReset();
    var imgPath = "images/" + $(this).text() + "?" + rnd;
    imgLoad(imgPath);
    return false;
});

function imgLoad(imgPath) {
    $("#foo-img").hide()
        .one('load', function() {
            imgLoadComplete();
        })
        .attr("src", imgPath)
        .each(function() {
            if (this.complete) $(this).trigger('load');
        });
}

function imgLoadComplete() {
    // after the image is completely loaded, we can get the w/h of the image
    var imgW = $("#foo-img").width() / 2;
    var imgH = $("#foo-img").height() / 2;

    // set div to half image size           
    $("#foo-div").css({
        "width": imgW,
        "height": imgH
    });
    // this should scale the image inside the div
    $("#foo-img").css({
        "width": "100%",
        "height": "100%"
    });

    $("#foo-img").show();
}

function imgLoadReset() {
    // delete w/h attributes otherwise it doesn't work
    $("#foo-img").css({
        "width": "",
        "height": ""
    });
    // clear image with a blank
    $("#foo-img").attr("src", "about:blank");
}

HTML

<div id="foo-div">
    <img id="foo-img" src="about:blank" />
</div>
<hr>
<a class="loadimg" href="#">001.jpg</a> | 
<a class="loadimg" href="#">002.jpg</a> | 
<a class="loadimg" href="#">003.jpg</a> | 
<a class="loadimg" href="#">004.jpg</a>
1个回答

1

使用

img {
    max-width: 100%;
    width: auto;
    height: auto;
}

针对您的图像,指定其容器div的所需宽度(以像素为单位)。


网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接