我如何设置动画以下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上淡入/淡出
感谢您的帮助。
路易斯
答案 0 :(得分:0)
似乎你错误地做了,而是你可以有两个元素并相应地隐藏和显示它们,$ .toggle()方法本身带有动画属性。