0
我將如何去動畫以下JavaScript代碼?我需要動畫這個jquery
$('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 /鼠標離開
感謝您的幫助。
路易
感謝您的回覆,我不知道如何做到這一點與我的代碼,我新手與jQuery – user1468225