//大图
$(".li_left img").on({
"mouseover":function(){
if(!$(this).is(":animated")){
$(this).animate({
width: '382px',
height: '272px',
marginLeft: '-25px',
marginTop: '-25px'
}, 400 );
}
},
"mouseout":function(){
$(this).animate({
marginLeft: 0,
marginTop: 0,
width: '332px',
height: '222px'
}, 0 );
}
});
图片放大:
.CardLists .List .img img {width: 100%;transition: all 0.8s;}
.CardLists .List:hover .img img {transform:scale(1.2);}