我试图以 3 秒的时间间隔显示一些链接图像,但在第一张图像消失后没有任何显示,任何帮助将不胜感激。
<div class="fadein">
<a href=""><img src="/media/home-content.jpg" alt="" /></a>
<a href=""><img src="/media/Banners/images/denim.jpg" alt="" /></a>
</div>
jQuery
jQuery.noConflict();
jQuery(document).ready(function(){
jQuery(function(){
jQuery('.fadein a img:gt(0)').hide();
setInterval(function(){
jQuery('.fadein a:first-child img').fadeOut(3000)
.parent().next('a img').fadeIn()
.end().appendTo('.fadein');},
3000);
});
});
更新
只需将代码更改为
jQuery(function(){
jQuery('.fadein a:gt(0) img').hide();
setInterval(function(){
jQuery('.fadein a:first-child img').fadeOut(3000)
.parent().next('a').children('img').fadeIn()
.end().appendTo('.fadein');},
10000);
});