我需要为这个jquery制作动画

时间:2012-09-05 06:26:03

标签: jquery animation onmouseover

我如何设置动画以下javascript代码?

$('img').bind('mouseenter mouseleave', function () {
    $(this).attr({
        src: $(this).attr('data-other-src'), 'data-other-src': $(this).attr('src'),
        'style': $(this).attr('data-other-style'), 'data-other-style': $(this).attr('style')
    });
});

它做了什么它将一个图像切换为另一个图像并且它改变了样式,我需要让它在mouseenter / mouseleave上淡入/淡出

感谢您的帮助。

路易斯

1 个答案:

答案 0 :(得分:0)

似乎你错误地做了,而是你可以有两个元素并相应地隐藏和显示它们,$ .toggle()方法本身带有动画属性。