在图像鼠标悬停缩放

时间:2011-07-22 05:26:01

标签: jquery

这是我的jQuery代码..

 $('img').live('mouseenter',function()
          {  
              $(this).addClass('shown');
              $('.shown').animate({width: '+=50',height: '+=50'})
          });

 $('img').live('mouseleave',function()
          {
              $(this).removeClass('shown');
              $(this).addClass('reset');
               $('.reset').animate({width: '-=50',height: '-=50'})
          });

一些鼠标进入后正在移除图像..请帮帮我..

1 个答案:

答案 0 :(得分:2)

您正在选择图像以使动画更加复杂:

$('img').hover(
    function () { 
        $(this).animate({width: '+=50', height: '+=50'});
    },
    function () {
        $(this).animate({width: '-=50', height: '-=50'});
    });