开发者

fade out one image, fade in second

开发者 https://www.devze.com 2023-02-09 12:08 出处:网络
I want one image to slowly fade开发者_如何学运维 out, while the second image slowly fades in. Both images should be at the same position ofcourse. How can I achieve this without setting their styles t

I want one image to slowly fade开发者_如何学运维 out, while the second image slowly fades in. Both images should be at the same position ofcourse. How can I achieve this without setting their styles to position: absolute?


try something like...

$('imageOneSelector').fadeOut(1000, function(){
   $(this).replaceWith(new image html);
   $('imageOneSelector').fadeIn(1000);
});

UPDATE:

heres a jsfiddle test without the images but should be the same concept...

http://jsfiddle.net/qWngq/1/

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号