我正在制作一个放大悬停图像的图库。我需要没有悬停的图像来调整大小并重新排列自己,以便它们在图像周围可见。我已经尝试过jQuery,但我无法弄清楚如何移动图像并调整它们的大小。我很乐意尝试使用css或jquery。
$(".picture").hover(function(){
$(this).animate({height: "500px",width: "500px" });
}, function() {
$(this).animate({ height: "200px", width: "200px" });
});
答案 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;
}