2

我想创建一个与此类似的缩放效果的图片。当鼠标悬停在图像上时,它将显示带有一些附加标记的图像的较大版本。

标记:

<div class="gallery">
    <div class="gallery-item">
        <img src="image.png" width="150" alt="" />
        <div class="gallery-item-full">
            <img src="image.png" width="250" alt="" />
            <p>Lorem ipsum dolor sit amet consectetur adipisicing elit</p>
        </div>
    </div>
    .
    .
    .
</div>

CSS:

.gallery {
    margin: 100px auto;
    width: 600px;
}

.gallery-item {
    float: left;
    position: relative;
    margin: 0 25px;
    width: 150px;
}

.gallery-item-full {
    z-index: 999;
    position: absolute;
    background: #fff;
    border: #ccc 1px solid;
    padding: 5px;
    top: -50px;
    left: -50px;
    opacity: 0;
}

.gallery-item:hover .gallery-item-full {
    opacity: 1;
}

这行得通,但我想要像以前的画廊一样平滑过渡。我愿意使用 Javascript/jQuery。

谢谢。

4

1 回答 1

4

试试这个: http: //jsfiddle.net/FPKAP/12/(有点不同,但我最近为某人制作)

希望能满足你的需要:)

链接:使用 Jquery 鼠标悬停时放大图像?

代码

$('#zoomimg').mouseenter(function() {
    $(this).css("cursor","pointer");
    $(this).animate({width: "50%", height: "50%"}, 'slow');
});

$('#zoomimg').mouseleave(function() {   
    $(this).animate({width: "28%"}, 'slow');
});

代码

$('#zoomimg').hover(function() {
    $(this).css("cursor", "pointer").animate({
        width: "50%",
        height: "50%"
    }, 'slow');

}, function() {
    $(this).animate({
        width: "28%"
    }, 'slow');

});​
于 2012-08-06T04:18:38.777 回答