如何使用jquery缩放div内容?

时间:2012-12-18 10:44:15

标签: javascript jquery html

我有一个父<div>。在里面,我放置了一些文字和图像。现在我需要缩放到该父<div>的特定部分。有可能吗?

4 个答案:

答案 0 :(得分:33)

如果您希望在鼠标悬停时缩放该图像:

$(document).ready( function() {
$('#div img').hover(
    function() {
        $(this).animate({ 'zoom': 1.2 }, 400);
    },
    function() {
        $(this).animate({ 'zoom': 1 }, 400);
    });
});

如果使用放大和缩小按钮,您可能会这样做:

$("#ZoomIn").click(ZoomIn());

$("#ZoomOut").click(ZoomOut());

function ZoomIn (event) {

    $("#div img").width(
        $("#div img").width() * 1.2
    );

    $("#div img").height(
        $("#div img").height() * 1.2
    );
},

function  ZoomOut (event) {

    $("#div img").width(
        $("#imgDtls").width() * 0.5
    );

    $("#div img").height(
        $("#div img").height() * 0.5
    );
}

答案 1 :(得分:11)

@Gadde - 你的回答非常有帮助。谢谢!我需要一个“地图”式的缩放比例,并能够产生我的帖子所需的感觉。我的标准包括需要点击重复,并在每次点击时继续缩小/缩小。以下是我的最终结果。

    var currentZoom = 1.0;

    $(document).ready(function () {
        $('#btn_ZoomIn').click(
            function () {
                $('#divName').animate({ 'zoom': currentZoom += .1 }, 'slow');
            })
        $('#btn_ZoomOut').click(
            function () {
                $('#divName').animate({ 'zoom': currentZoom -= .1 }, 'slow');
            })
        $('#btn_ZoomReset').click(
            function () {
                currentZoom = 1.0
                $('#divName').animate({ 'zoom': 1 }, 'slow');
            })
    });

答案 2 :(得分:5)

 $('image').animate({ 'zoom': 1}, 400);

答案 3 :(得分:0)

使用zoom-master / jquery.zoom.js。图像的缩放效果非常好。这是该页面的链接。 http://www.jacklmoore.com/zoom/

gem install sass