3

我想在它们之间没有白色转移的情况下淡化图像。

HTML:

<div class="image">
  <span><img src="1.jpg"></span>
</div>

jQuery:

$('.image > span > img').fadeOut(1000, function() {
  $('.image > span > img').attr('src', images[i]);
  $(this).fadeIn(1000);
});

这行得通,但在变化之间有白色褪色。图像数组包含图像源。我找到了这个http://jsfiddle.net/byB6L/但我无法更新我的代码来使用它。

4

4 回答 4

4

这应该给你一个想法:

var c = 0,                  // Counter index
    $img = $('.image img'), // Get images
    n = $img.length;        // How many images?

$img.eq(c).show();          // Show c one

(function loop() {          // Recursive infinite loop
    $img.delay(1000).fadeOut(800).eq(++c%n).fadeIn(800, loop);
}()); 
.image{
  position:relative;
}
.image img{
  position:absolute;
  top:0px; 
  display:none;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div class="image">
  <img src="http://placehold.it/300x150/bf0?text=Apples" alt="" />
  <img src="http://placehold.it/300x150/0bf?text=and" alt="" />
  <img src="http://placehold.it/300x150/fb0?text=Pears" alt="" />
</div>

于 2013-02-20T08:28:02.330 回答
2

这是因为您在动画结束回调中使用了相同的图像。

我的建议:position: relative;class="image"容器上使用,将图像元素设置为position:absolute;,现在在图像淡出后,将新图像插入容器并将其淡入并删除第一个图像。

例子:

html:

<div class="image">
  <span><img src="1.jpg"></span>
</div>

CSS:

<style type="text/css">
    .image{position:relative;}
    .image span img{position:absolute;top:0;left:0;}
</style>

JavaScript:

<script type="text/javascript">
    $('.image > span > img').fadeOut(1000);
    var $image = $('<img alt="" src="YOUR NEW IMAGE_PATH" style="opacity:0;" />');
    $('.image > span').append($image);
    $image.fadeIn(1000, function(){
        $('.image > span > img').first().remove();
    });
</script>
于 2013-02-20T08:25:28.480 回答
0

不要淡出一个图像然后淡入另一个图像,而是使用两个图像元素并将它们叠加在一起,然后只淡出顶部的图像以使底部的图像出现。

CSS:

.image img { position: absolute; left: 0; top: 0; }

HTML:

<div class="image">
  <img class="bottomImage" src="http://placekitten.com/100/100"/>
  <img class="topImage" src="http://placekitten.com/g/100/100"/>
</div>

Javascript:

$('.topImage').fadeOut(3000);

演示:http: //jsfiddle.net/Guffa/grTUK/

于 2013-02-20T08:25:06.243 回答
0

JQuery 不支持背景颜色动画等背景图像动画(这也需要使用额外的插件)。所以做你的动画,你肯定需要有两张图片。

于 2013-02-20T08:28:27.947 回答