图像交换技术 - 反而淡化

Cou*_*lin 3 jquery

我使用下面的代码在悬停时交换图像:

$(function() {
    $("#compost").hover(function() {
        origImage=$(this).attr("src");
        $(this).attr("src", "images/order-compost-over.gif")
    },function() {
        $(this).attr("src", origImage)
    });
}); 
Run Code Online (Sandbox Code Playgroud)

我试图使用fadeIn而不是交换.我试过它,但没有运气.我尝试使用img标签fadeIn但它没有用.

tsi*_*mon 5

看看ImageSwitch.做你想要的一切,还有更多.