悬停时css或Jquery图像库增加图像大小并减小大小并重新排列其他图像

时间:2014-01-24 00:29:59

标签: javascript jquery html image css3

我正在制作一个放大悬停图像的图库。我需要没有悬停的图像来调整大小并重新排列自己,以便它们在图像周围可见。我已经尝试过jQuery,但我无法弄清楚如何移动图像并调整它们的大小。我很乐意尝试使用css或jquery。

$(".picture").hover(function(){
$(this).animate({height: "500px",width: "500px" });
}, function() {
$(this).animate({ height: "200px", width: "200px" });
});

here is a link to the full project on my github

1 个答案:

答案 0 :(得分:0)

为什么不使用css,所以在课堂图片中,

.picture{
     -webkit-transition: all 0.3s;
      moz-transition: all 0.3s;
      transition: all 0.3s;
      //set initial height and width here (this is important)
}
.picture:hover{
    height: 500px;
    width: 500px;
}