jQuery改变图像src与淡入效果

前端之家收集整理的这篇文章主要介绍了jQuery改变图像src与淡入效果前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我试图创建一个效果,你点击缩略图缩略图链接将替换主图像,但淡入它。这是我目前使用的代码
$(".thumbs a").click(function(e) {
    e.preventDefault();
    $imgURL = $(this).attr("href");
    $(".boat_listing .mainGallery").fadeIn(400,function() {
        $(".boat_listing .mainGallery").attr('src',$imgURL);
    });
});

这工作和替换的图像没有淡入淡出效果。我需要改变什么以使fadeIn效果工作?

解决方法

你必须先使它fadeOut()或隐藏它。

尝试这个 :

$(".thumbs a").click(function(e) {
    e.preventDefault();
    $imgURL = $(this).attr("href");
    $(".boat_listing .mainGallery")
        .fadeOut(400,function() {
            $(".boat_listing .mainGallery").attr('src',$imgURL);
        })
        .fadeIn(400);
});

它应该淡出图像,然后在隐藏时更改src,然后淡入淡出。

Here’s a jsFiddle example.

原文链接:https://www.f2er.com/jquery/183563.html

猜你在找的jQuery相关文章