怎样用jquery实现当鼠标放到图片上面时,图片等比例的缩小,要有动画效果

2024-12-04 11:05:53
推荐回答(2个)
回答(1):

$("img").hover(function(){
$("this").animate({
width: "90%",
height: "90%",
}, 1000 );
});
是这种效果吗

回答(2):

$('img').hover(function() { $(this).animate({ width: "90%", height: "90%" }, 1000); });

再试,彼岸灿烂多写了个逗号

怎么不谢我啊!~~~~唉