这是我的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'})
});
一些鼠标进入后正在移除图像..请帮帮我..
答案 0 :(得分:2)
您正在选择图像以使动画更加复杂:
$('img').hover(
function () {
$(this).animate({width: '+=50', height: '+=50'});
},
function () {
$(this).animate({width: '-=50', height: '-=50'});
});