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

2024年12月04日 11:05
有2个网友回答
网友(1):

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

网友(2):

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

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

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