$(function() { //图片放大效果 开始 $(".con-five").hover(function() { $(this).find(".conimg").stop().animate({ "width": 300, "height": 190 }); }, function() { $(this).find(".conimg").stop().animate({ "width": 285, "height": 180 }); }) //图片放大效果 结束 });